Why React uses className over class attribute?

  • To avoid naming conflicts with JavaScript class keyword
  • To follow HTML5 standard
  • To improve performance
  • To make the markup more concise
React uses className instead of class attribute to avoid naming conflicts with the JavaScript class keyword. Using className also makes it easier to use CSS modules and other tools that work with class names.

How to access current locale with React Intl

  • Use the "formatMessage" function with the "locale" option
  • Use the "intl" object provided by the "injectIntl" higher-order component
  • Use the "Intl" object provided by the browser
  • Use the "navigator.language" property
In React Intl, you can access the current locale by using the "intl" object provided by the "injectIntl" higher-order component. This object contains information about the current language, locale, and formatting options, and can be used to format text and data in the correct format. For example: const { locale } = this.props.intl;.

What is children prop?

  • A prop that contains the child components of a component
  • A prop that contains the parent component of a component
  • A prop that is passed to the constructor() method of a component
  • A prop that is used to update a component's state
The children prop is a special prop in React that contains the child components of a component. It allows components to render their child components directly, without having to pass them down through props. The children prop can be used with any component, including functional components.

Why are Redux state functions called reducers?

  • Because they reduce the state of the application
  • Because they reduce the complexity of the application
  • Because they reduce the size of the application
  • Because they reduce the coupling between components
Redux state functions are called reducers because they take the current state of the application and an action as input, and return a new state as output. This process of reducing the state of the application is the core principle of Redux.

Does the statics object work with ES6 classes in React?

  • Yes, the statics object works with ES6 classes
  • No, the statics object only works with React.createClass()
Yes, the statics object works with ES6 classes in React. The statics object is used to define static properties for a React component, such as defaultProps or propTypes. In ES6 classes, you can define static properties using the static keyword, like so: 'static defaultProps = {...}'. This is equivalent to using the statics object in React.createClass().

What is the use of react-dom package?

  • To create React components
  • To handle routing in React components
  • To manage state in React components
  • To render React components to the DOM
The react-dom package is used to render React components to the DOM. The react-dom package provides several methods for rendering components, including the render method and the hydrate method.

What is an action in Redux?

  • A function that transforms the Redux store state
  • An object that describes a change in the Redux store state
  • A middleware function that handles asynchronous actions
  • A component that is rendered in response to user input
An action in Redux is an object that describes a change in the Redux store state. Actions are the only way to update the state of the Redux store, and they must have a type property that describes the type of action being performed. In addition to the type property, actions can also have additional data that is used to update the state.

What is the benefit of component stack trace from error boundary?

  • It helps identify the component that caused the error
  • It provides a detailed explanation of the error
  • It suggests possible solutions to the error
  • It prevents the error from being thrown again
The component stack trace provided by an error boundary in React can be useful in identifying the component that caused the error. This can be helpful in debugging and resolving issues with the application. The stack trace includes information about the component hierarchy and the order in which components were rendered, making it easier to trace the source of the error.

How to make AJAX request in Redux?

  • Use the fetch() method in a component
  • Use a middleware such as Redux Thunk or Redux Saga
  • Use the getState() method to access the Redux store's state
To make an AJAX request in Redux, you can use a middleware such as Redux Thunk or Redux Saga. These middleware allow you to handle asynchronous actions, such as making an AJAX request, and dispatching actions based on the response.

What are render props?

  • A technique for passing functions as props to child components
  • A technique for passing state as props to child components
  • A technique for rendering components as props to child components
  • A technique for rendering state as props to child components
Render props is a technique in React where a component exposes a function prop that returns another component or element. This allows the child component to use the parent's logic or state, and can be used to create reusable, composable components. For example: } />.