React Interview Questions & Answers

Table of Contents

No.Questions
Core React
1What is React?
2What are the major features of React?
3What is JSX?
4What is the difference between Element and Component?
5How to create components in React?
6When to use a Class Component over a Function Component?
7What are Pure Components?
8What is state in React?
9What are props in React?
10What is the difference between state and props?
11Why should we not update the state directly?
12What is the purpose of callback function as an argument of setState()?
13What is the difference between HTML and React event handling?
14How to bind methods or event handlers in JSX callbacks?
15How to pass a parameter to an event handler or callback?
16What are synthetic events in React?
17What are inline conditional expressions?
18What is “key” prop and what is the benefit of using it in arrays of elements?
19What is the use of refs?
20How to create refs?
21What are forward refs?
22Which is preferred option with in callback refs and findDOMNode()?
23Why are String Refs legacy?
24What is Virtual DOM?
25How Virtual DOM works?
26What is the difference between Shadow DOM and Virtual DOM?
27What is React Fiber?
28What is the main goal of React Fiber?
29What are controlled components?
30What are uncontrolled components?
31What is the difference between createElement and cloneElement?
32What is Lifting State Up in React?
33What are the different phases of component lifecycle?
34What are the lifecycle methods of React?
35What are Higher-Order components?
36How to create props proxy for HOC component?
37What is context?
38What is children prop?
39How to write comments in React?
40What is the purpose of using super constructor with props argument?
41What is reconciliation?
42How to set state with a dynamic key name?
43What would be the common mistake of function being called every time the component renders?
44Is lazy function supports named exports?
45Why React uses className over class attribute?
46What are fragments?
47Why fragments are better than container divs?
48What are portals in React?
49What are stateless components?
50What are stateful components?
51How to apply validation on props in React?
52What are the advantages of React?
53What are the limitations of React?
54What are error boundaries in React v16
55How are error boundaries handled in React v15?
56What are the recommended ways for static type checking?
57What is the use of react-dom package?
58What is the purpose of render method of react-dom?
59What is ReactDOMServer?
60How to use InnerHtml in React?
61How to use styles in React?
62How events are different in React?
63What will happen if you use setState in constructor?
64What is the impact of indexes as keys?
65Is it good to use setState() in componentWillMount() method?
66What will happen if you use props in initial state?
67How do you conditionally render components?
68Why we need to be careful when spreading props on DOM elements??
69How you use decorators in React?
70How do you memoize a component?
71How you implement Server-Side Rendering or SSR?
72How to enable production mode in React?
73What is CRA and its benefits?
74What is the lifecycle methods order in mounting?
75What are the lifecycle methods going to be deprecated in React v16?
76What is the purpose of getDerivedStateFromProps() lifecycle method?
77What is the purpose of getSnapshotBeforeUpdate() lifecycle method?
78Do Hooks replace render props and higher order components?
79What is the recommended way for naming components?
80What is the recommended ordering of methods in component class?
81What is a switching component?
82Why we need to pass a function to setState()?
83What is strict mode in React?
84What are React Mixins?
85Why is isMounted() an anti-pattern and what is the proper solution?
86What are the Pointer Events supported in React?
87Why should component names start with capital letter?
88Are custom DOM attributes supported in React v16?
89What is the difference between constructor and getInitialState?
90Can you force a component to re-render without calling setState?
91What is the difference between super() and super(props) in React using ES6 classes?
92How to loop inside JSX?
93How do you access props in attribute quotes?
94What is React PropType array with shape?
95How to conditionally apply class attributes?
96What is the difference between React and ReactDOM?
97Why ReactDOM is separated from React?
98How to use React label element?
99How to combine multiple inline style objects?
100How to re-render the view when the browser is resized?
101What is the difference between setState and replaceState methods?
102How to listen to state changes?
103What is the recommended approach of removing an array element in react state?
104Is it possible to use React without rendering HTML?
105How to pretty print JSON with React?
106Why you can’t update props in React?
107How to focus an input element on page load?
108What are the possible ways of updating objects in state?
110How can we find the version of React at runtime in the browser?
111What are the approaches to include polyfills in your create-react-app?
112How to use https instead of http in create-react-app?
113How to avoid using relative path imports in create-react-app?
114How to add Google Analytics for react-router?
115How to update a component every second?
116How do you apply vendor prefixes to inline styles in React?
117How to import and export components using react and ES6?
118What are the exceptions on React component naming?
119Why is a component constructor called only once?
120How to define constants in React?
121How to programmatically trigger click event in React?
122Is it possible to use async/await in plain React?
123What are the common folder structures for React?
124What are the popular packages for animation?
125What is the benefit of styles modules?
126What are the popular React-specific linters?
127How to make AJAX call and In which component lifecycle methods should I make an AJAX call?
128What are render props?
React Router
129What is React Router?
130How React Router is different from history library?
131What are the <Router> components of React Router v4?
132What is the purpose of push and replace methods of history?
133How do you programmatically navigate using React router v4?
134How to get query parameters in React Router v4
135Why you get “Router may have only one child element” warning?
136How to pass params to history.push method in React Router v4?
137How to implement default or NotFound page?
138How to get history on React Router v4?
139How to perform automatic redirect after login?
React Internationalization
140What is React-Intl?
141What are the main features of React Intl?
142What are the two ways of formatting in React Intl?
143How to use FormattedMessage as placeholder using React Intl?
144How to access current locale with React Intl
145How to format date using React Intl?
React Testing
146What is Shallow Renderer in React testing?
147What is TestRenderer package in React?
148What is the purpose of ReactTestUtils package?
149What is Jest?
150What are the advantages of Jest over Jasmine?
151Give a simple example of Jest test case
React Redux
152What is Flux?
153What is Redux?
154What are the core principles of Redux?
155What are the downsides of Redux compared to Flux?
156What is the difference between mapStateToProps() and mapDispatchToProps()?
157Can I dispatch an action in reducer?
158How to access Redux store outside a component?
159What are the drawbacks of MVW pattern
160Are there any similarities between Redux and RxJS?
161How to dispatch an action on load?
162How to use connect from React Redux?
163How to reset state in Redux?
164Whats the purpose of at symbol in the redux connect decorator?
165What is the difference between React context and React Redux?
166Why are Redux state functions called reducers?
167How to make AJAX request in Redux?
168Should I keep all component’s state in Redux store?
169What is the proper way to access Redux store?
170What is the difference between component and container in React Redux?
171What is the purpose of the constants in Redux?
172What are the different ways to write mapDispatchToProps()?
173What is the use of the ownProps parameter in mapStateToProps() and mapDispatchToProps()?
174How to structure Redux top level directories?
175What is redux-saga?
176What is the mental model of redux-saga?
177What are the differences between call and put in redux-saga
178What is Redux Thunk?
179What are the differences between redux-saga and redux-thunk
180What is Redux DevTools?
181What are the features of Redux DevTools?
182What are Redux selectors and Why to use them?
183What is Redux Form?
184What are the main features of Redux Form?
185How to add multiple middlewares to Redux?
186How to set initial state in Redux?
187How Relay is different from Redux?
188What is an action in Redux?
React Native
188What is the difference between React Native and React?
189How to test React Native apps?
190How to do logging in React Native?
191How to debug your React Native?
React supported libraries and Integration
192What is reselect and how it works?
193What is Flow?
194What is the difference between Flow and PropTypes?
195How to use font-awesome icons in React?
196What is React Dev Tools?
197Why is DevTools not loading in Chrome for local files?
198How to use Polymer in React?
199What are the advantages of React over Vue.js?
200What is the difference between React and Angular?
201Why React tab is not showing up in DevTools?
202What are styled components?
203Give an example of Styled Components?
204What is Relay?
205How to use TypeScript in create-react-app application?
Miscellaneous
206What are the main features of reselect library?
207Give an example of reselect usage?
209Does the statics object work with ES6 classes in React?
210Can Redux only be used with React?
211Do you need to have a particular build tool to use Redux?
212How Redux Form initialValues get updated from state?
213How React PropTypes allow different type for one prop?
214Can I import an SVG file as react component?
215Why are inline ref callbacks or functions not recommended?
216What is render hijacking in React?
217What are HOC factory implementations?
218How to pass numbers to React component?
219Do I need to keep all my state into Redux? Should I ever use react internal state?
220What is the purpose of registerServiceWorker in React?
221What is React memo function?
222What is React lazy function?
223How to prevent unnecessary updates using setState?
224How do you render Array, Strings and Numbers in React 16 Version?
225How to use class field declarations syntax in React classes?
226What are hooks?
227What rules need to be followed for hooks?
228How to ensure hooks followed the rules in your project?
229What are the differences between Flux and Redux?
230What are the benefits of React Router V4?
231Can you describe about componentDidCatch lifecycle method signature?
232In which scenarios error boundaries do not catch errors?
233Why do you not need error boundaries for event handlers?
234What is the difference between try catch block and error boundaries?
235What is the behavior of uncaught errors in react 16?
236What is the proper placement for error boundaries?
237What is the benefit of component stack trace from error boundary?
238What is the required method to be defined for a class component?
239What are the possible return types of render method?
240What is the main purpose of constructor?
241Is it mandatory to define constructor for React component?
242What are default props?
243Why should not call setState in componentWillUnmount?
244What is the purpose of getDerivedStateFromError?
245What is the methods order when component re-rendered?
246What are the methods invoked during error handling?
247What is the purpose of displayName class property?
248What is the browser support for react applications?
249What is the purpose of unmountComponentAtNode method?
250What is code-splitting?
251What is the benefit of strict mode?
252What are Keyed Fragments?
253Does React support all HTML attributes?
254What are the limitations with HOCs?
255How to debug forwardRefs in DevTools?
256When component props defaults to true?
257What is NextJS and major features of it?
258How do you pass an event handler to a component?
259Is it good to use arrow functions in render methods?
260How to prevent a function from being called multiple times?
261How JSX prevents Injection Attacks?
262How do you update rendered elements?
263How do you say that props are read only?
264How do you say that state updates are merged?
265How do you pass arguments to an event handler?
266How to prevent component from rendering?
267What are the conditions to safely use the index as a key?
268Is it keys should be globally unique?
269What is the popular choice for form handling?
270What are the advantages of formik over redux form library?
271Why do you not required to use inheritance?
272Can I use web components in react application?
273What is dynamic import?
274What are loadable components?
275What is suspense component?
276What is route based code splitting?
277Give an example on How to use context?
278What is the purpose of default value in context?
279How do you use contextType?
280What is a consumer?
281How do you solve performance corner cases while using context?
282What is the purpose of forward ref in HOCs?
283Is it ref argument available for all functions or class components?
284Why do you need additional care for component libraries while using forward refs?
285How to create react class components without ES6?
286Is it possible to use react without JSX?
287What is diffing algorithm?
288What are the rules covered by diffing algorithm?
289When do you need to use refs?
290Is it prop must be named as render for render props?
291What are the problems of using render props with pure components?
292How do you create HOC using render props?
293What is windowing technique?
294How do you print falsy values in JSX?
295What is the typical use case of portals?
296How do you set default value for uncontrolled component?
297What is your favorite React stack?
298What is the difference between Real DOM and Virtual DOM?
299How to add Bootstrap to a react application?
300Can you list down top websites or applications using react as front end framework?
301Is it recommended to use CSS In JS technique in React?
302Do I need to rewrite all my class components with hooks?
303How to fetch data with React Hooks?
304Is Hooks cover all use cases for classes?
305What is the stable release for hooks support?
306Why do we use array destructuring (square brackets notation) in useState?
307What are the sources used for introducing hooks?
308How do you access imperative API of web components?
309What is formik?
310What are typical middleware choices for handling asynchronous calls in Redux?
311Do browsers understand JSX code?
312Describe about data flow in react?
313What is react scripts?
314What are the features of create react app?
315What is the purpose of renderToNodeStream method?
316What is MobX?
317What are the differences between Redux and MobX?
318Should I learn ES6 before learning ReactJS?
319What is Concurrent Rendering?
320What is the difference between async mode and concurrent mode?
321Can I use javascript urls in react16.9?
322What is the purpose of eslint plugin for hooks?
323What is the difference between Imperative and Declarative in React?
324What are the benefits of using typescript with reactjs?
325How do you make sure that user remains authenticated on page refresh while using Context API State Management?
326What are the benefits of new JSX transform?
327How is the new JSX transform different from old transform?
328How do you get redux scaffolding using create-react-app?
329What are React Server components?
330What is prop drilling?
331What is state mutation and how to prevent it?
332What is the difference between useState and useRef hook?
333What are the Differences Between Functional and Class Component in React

Core React

  1. What is React?

React is an open-source front-end JavaScript library that is used for building user interfaces, especially for single-page applications. It is used for handling view layer for web and mobile apps. React was created by Jordan Walke, a software engineer working for Facebook. React was first deployed on Facebook’s News Feed in 2011 and on Instagram in 2012. ⬆ Back to Top 2. ### What are the major features of React? The major features of React are:

  • It uses VirtualDOM instead of RealDOM considering that RealDOM manipulations are expensive.
  • Supports server-side rendering.
  • Follows Unidirectional data flow or data binding.
  • Uses reusable/composable UI components to develop the view. ⬆ Back to Top
  1. What is JSX?

JSX is a XML-like syntax extension to ECMAScript (the acronym stands for JavaScript XML). Basically it just provides syntactic sugar for the React.createElement() function, giving us expressiveness of JavaScript along with HTML like template syntax. In the example below text inside <h1> tag is returned as JavaScript function to the render function.

export default function App() {
return (
<div>
<h1>{"Welcome to React world!"}</h1>
</div>
);
}
See Class

```jsx harmony class App extends React.Component { render() { return (

); } } ```

**Note:** JSX is stricter than HTML **[⬆ Back to Top](#table-of-contents)** 4. ### What is the difference between Element and Component? An _Element_ is a plain object describing what you want to appear on the screen in terms of the DOM nodes or other components. _Elements_ can contain other _Elements_ in their props. Creating a React element is cheap. Once an element is created, it is never mutated. The object representation of React Element would be as follows: ```javascript const element = React.createElement("div", { id: "login-btn" }, "Login"); ``` The above `React.createElement()` function returns an object: ``` { type: 'div', props: { children: 'Login', id: 'login-btn' } } ``` And finally it renders to the DOM using `ReactDOM.render()`: ```html
Login
``` Whereas a **component** can be declared in several different ways. It can be a class with a `render()` method or it can be defined as a function. In either case, it takes props as an input, and returns a JSX tree as the output: ```javascript const Button = ({ onLogin }) => (
Login
); ``` Then JSX gets transpiled to a `React.createElement()` function tree: ```javascript const Button = ({ onLogin }) => React.createElement( "div", { id: "login-btn", onClick: onLogin }, "Login" ); ``` **[⬆ Back to Top](#table-of-contents)** 5. ### How to create components in React? There are two possible ways to create a component. 1. **Function Components:** This is the simplest way to create a component. Those are pure JavaScript functions that accept props object as the first parameter and return React elements: ```jsx harmony function Greeting({ message }) { return

{`Hello, ${message}`}

; } ``` 2. **Class Components:** You can also use ES6 class to define a component. The above function component can be written as: ```jsx harmony class Greeting extends React.Component { render() { return

{`Hello, ${this.props.message}`}

; } } ``` **[⬆ Back to Top](#table-of-contents)** 6. ### When to use a Class Component over a Function Component? If the component needs _state or lifecycle methods_ then use class component otherwise use function component. _However, from React 16.8 with the addition of Hooks, you could use state , lifecycle methods and other features that were only available in class component right in your function component._ _So, it is always recommended to use Function components, unless you need a React functionality whose Function component equivalent is not present yet, like Error Boundaries._ **[⬆ Back to Top](#table-of-contents)** 7. ### What are Pure Components? _`React.PureComponent`_ is exactly the same as _`React.Component`_ except that it handles the `shouldComponentUpdate()` method for you. When props or state changes, _PureComponent_ will do a shallow comparison on both props and state. _Component_ on the other hand won't compare current props and state to next out of the box. Thus, the component will re-render by default whenever `shouldComponentUpdate` is called. In functional componenets we use `React.memo()` API. `React.memo()` is a higher-order component. It takes a React component as its first argument and returns a special type of React component that allows the renderer to render the component while memoizing the output. Therefore, if the component’s props are shallowly equal, the `React.memo()` component will bail out the updates. **[⬆ Back to Top](#table-of-contents)** 8. ### What is state in React? _State_ of a component is an object that holds some information that may change over the lifetime of the component. We should always try to make our state as simple as possible and minimize the number of stateful components. Let's create a user component with message state, ```jsx harmony import React, { useState } from 'react'; function User() { const [message, setMessage] = useState("Welcome to React world"); return ( ); } ```
See Class

```jsx harmony class User extends React.Component { constructor(props) { super(props); this.state = { message: "Welcome to React world", }; } render() { return (

); } } ```

![state](../../img_list/state.jpg) State is similar to props, but it is private and fully controlled by the component ,i.e., it is not accessible to any other component till the owner component decides to pass it. **[⬆ Back to Top](#table-of-contents)** 9. ### What are props in React? _Props_ are inputs to components. They are single values or objects containing a set of values that are passed to components on creation using a naming convention similar to HTML-tag attributes. They are data passed down from a parent component to a child component. The primary purpose of props in React is to provide following component functionality: 1. Pass custom data to your component. 2. Trigger state changes. 3. Use via `this.props.reactProp` inside component's `render()` method. For example, let us create an element with `reactProp` property: ```jsx harmony ``` This `reactProp` (or whatever you came up with) name then becomes a property attached to React's native props object which originally already exists on all components created using React library. ``` props.reactProp ``` **Example: Props in Class Based Component** ```jsx import React from "react"; import ReactDOM from "react-dom"; class ChildComponent extends React.Component { render() { return (

{this.props.name}

{this.props.age}

); } } class ParentComponent extends React.Component { render() { return (
); } } ``` **Example: Props in Functional Component** ```jsx import React from "react"; import ReactDOM from "react-dom"; const ChildComponent = (props) => { return (

{props.name}

{props.age}

); }; const ParentComponent = () => { return (
); }; ``` **[⬆ Back to Top](#table-of-contents)** 10. ### What is the difference between state and props? Both _props_ and _state_ are plain JavaScript objects. While both of them hold information that influences the output of render, they are different in their functionality with respect to component. Props get passed to the component similar to function parameters whereas state is managed within the component similar to variables declared within a function. **[⬆ Back to Top](#table-of-contents)** 11. ### Why should we not update the state directly? If you try to update the state directly then it won't re-render the component. ```javascript //Wrong this.state.message = "Hello world"; ``` Instead use `setState()` method. It schedules an update to a component's state object. When state changes, the component responds by re-rendering. ```javascript //Correct this.setState({ message: "Hello World" }); ``` **Note:** You can directly assign to the state object either in _constructor_ or using latest javascript's class field declaration syntax. **[⬆ Back to Top](#table-of-contents)** 12. ### What is the purpose of callback function as an argument of `setState()`? The callback function is invoked when setState finished and the component gets rendered. Since `setState()` is **asynchronous** the callback function is used for any post action. **Note:** It is recommended to use lifecycle method rather than this callback function. ```javascript setState({ name: "John" }, () => console.log("The name has updated and component re-rendered") ); ``` **[⬆ Back to Top](#table-of-contents)** 13. ### What is the difference between HTML and React event handling? Below are some of the main differences between HTML and React event handling, 1. In HTML, the event name usually represents in _lowercase_ as a convention: ```html ``` Whereas in React it follows _camelCase_ convention: ```jsx harmony ; } } ``` 2. **Public class fields syntax:** If you don't like to use bind approach then _public class fields syntax_ can be used to correctly bind callbacks. ```jsx harmony handleClick = () => { console.log("this is:", this); }; ``` ```jsx harmony ``` 3. **Arrow functions in callbacks:** You can use _arrow functions_ directly in the callbacks. ```jsx harmony handleClick() { console.log('Click happened'); } render() { return ; } ``` **Note:** If the callback is passed as prop to child components, those components might do an extra re-rendering. In those cases, it is preferred to go with `.bind()` or _public class fields syntax_ approach considering performance. **[⬆ Back to Top](#table-of-contents)** 15. ### How to pass a parameter to an event handler or callback? You can use an _arrow function_ to wrap around an _event handler_ and pass parameters: ```jsx harmony )); // Create ref to the DOM button: const ref = React.createRef(); {"Forward Ref"}; ``` **[⬆ Back to Top](#table-of-contents)** 22. ### Which is preferred option with in callback refs and findDOMNode()? It is preferred to use _callback refs_ over `findDOMNode()` API. Because `findDOMNode()` prevents certain improvements in React in the future. The **legacy** approach of using `findDOMNode`: ```javascript class MyComponent extends Component { componentDidMount() { findDOMNode(this).scrollIntoView(); } render() { return
; } } ``` The recommended approach is: ```javascript class MyComponent extends Component { constructor(props) { super(props); this.node = createRef(); } componentDidMount() { this.node.current.scrollIntoView(); } render() { return
; } } ``` **[⬆ Back to Top](#table-of-contents)** 23. ### Why are String Refs legacy? If you worked with React before, you might be familiar with an older API where the `ref` attribute is a string, like `ref={'textInput'}`, and the DOM node is accessed as `this.refs.textInput`. We advise against it because _string refs have below issues_, and are considered legacy. String refs were **removed in React v16**. 1. They _force React to keep track of currently executing component_. This is problematic because it makes react module stateful, and thus causes weird errors when react module is duplicated in the bundle. 2. They are _not composable_ — if a library puts a ref on the passed child, the user can't put another ref on it. Callback refs are perfectly composable. 3. They _don't work with static analysis_ like Flow. Flow can't guess the magic that framework does to make the string ref appear on `this.refs`, as well as its type (which could be different). Callback refs are friendlier to static analysis. 4. It doesn't work as most people would expect with the "render callback" pattern (e.g. ) ```jsx harmony class MyComponent extends Component { renderRow = (index) => { // This won't work. Ref will get attached to DataTable rather than MyComponent: return ; // This would work though! Callback refs are awesome. return (this["input-" + index] = input)} />; }; render() { return ( ); } } ``` **[⬆ Back to Top](#table-of-contents)** 24. ### What is Virtual DOM? The _Virtual DOM_ (VDOM) is an in-memory representation of _Real DOM_. The representation of a UI is kept in memory and synced with the "real" DOM. It's a step that happens between the render function being called and the displaying of elements on the screen. This entire process is called _reconciliation_. **[⬆ Back to Top](#table-of-contents)** 25. ### How Virtual DOM works? The _Virtual DOM_ works in three simple steps. 1. Whenever any underlying data changes, the entire UI is re-rendered in Virtual DOM representation. ![vdom](../../img_list/vdom1.png) 2. Then the difference between the previous DOM representation and the new one is calculated. ![vdom2](../../img_list/vdom2.png) 3. Once the calculations are done, the real DOM will be updated with only the things that have actually changed. ![vdom3](../../img_list/vdom3.png) **[⬆ Back to Top](#table-of-contents)** 26. ### What is the difference between Shadow DOM and Virtual DOM? The _Shadow DOM_ is a browser technology designed primarily for scoping variables and CSS in _web components_. The _Virtual DOM_ is a concept implemented by libraries in JavaScript on top of browser APIs. **[⬆ Back to Top](#table-of-contents)** 27. ### What is React Fiber? Fiber is the new _reconciliation_ engine or reimplementation of core algorithm in React v16. The goal of React Fiber is to increase its suitability for areas like animation, layout, gestures, ability to pause, abort, or reuse work and assign priority to different types of updates; and new concurrency primitives. **[⬆ Back to Top](#table-of-contents)** 28. ### What is the main goal of React Fiber? The goal of _React Fiber_ is to increase its suitability for areas like animation, layout, and gestures. Its headline feature is **incremental rendering**: the ability to split rendering work into chunks and spread it out over multiple frames. _from documentation_ Its main goals are: 1. Ability to split interruptible work in chunks. 2. Ability to prioritize, rebase and reuse work in progress. 3. Ability to yield back and forth between parents and children to support layout in React. 4. Ability to return multiple elements from render(). 5. Better support for error boundaries. **[⬆ Back to Top](#table-of-contents)** 29. ### What are controlled components? A component that controls the input elements within the forms on subsequent user input is called **Controlled Component**, i.e, every state mutation will have an associated handler function. For example, to write all the names in uppercase letters, we use handleChange as below, ```javascript handleChange(event) { this.setState({value: event.target.value.toUpperCase()}) } ``` **[⬆ Back to Top](#table-of-contents)** 30. ### What are uncontrolled components? The **Uncontrolled Components** are the ones that store their own state internally, and you query the DOM using a ref to find its current value when you need it. This is a bit more like traditional HTML. In the below UserProfile component, the `name` input is accessed using ref. ```jsx harmony class UserProfile extends React.Component { constructor(props) { super(props); this.handleSubmit = this.handleSubmit.bind(this); this.input = React.createRef(); } handleSubmit(event) { alert("A name was submitted: " + this.input.current.value); event.preventDefault(); } render() { return (
); } } ``` In most cases, it's recommend to use controlled components to implement forms. In a controlled component, form data is handled by a React component. The alternative is uncontrolled components, where form data is handled by the DOM itself. **[⬆ Back to Top](#table-of-contents)** 31. ### What is the difference between createElement and cloneElement? JSX elements will be transpiled to `React.createElement()` functions to create React elements which are going to be used for the object representation of UI. Whereas `cloneElement` is used to clone an element and pass it new props. **[⬆ Back to Top](#table-of-contents)** 32. ### What is Lifting State Up in React? When several components need to share the same changing data then it is recommended to _lift the shared state up_ to their closest common ancestor. That means if two child components share the same data from its parent, then move the state to parent instead of maintaining local state in both of the child components. **[⬆ Back to Top](#table-of-contents)** 33. ### What are the different phases of component lifecycle? The component lifecycle has three distinct lifecycle phases: 1. **Mounting:** The component is ready to mount in the browser DOM. This phase covers initialization from `constructor()`, `getDerivedStateFromProps()`, `render()`, and `componentDidMount()` lifecycle methods. 2. **Updating:** In this phase, the component gets updated in two ways, sending the new props and updating the state either from `setState()` or `forceUpdate()`. This phase covers `getDerivedStateFromProps()`, `shouldComponentUpdate()`, `render()`, `getSnapshotBeforeUpdate()` and `componentDidUpdate()` lifecycle methods. 3. **Unmounting:** In this last phase, the component is not needed and gets unmounted from the browser DOM. This phase includes `componentWillUnmount()` lifecycle method. It's worth mentioning that React internally has a concept of phases when applying changes to the DOM. They are separated as follows 1. **Render** The component will render without any side effects. This applies to Pure components and in this phase, React can pause, abort, or restart the render. 2. **Pre-commit** Before the component actually applies the changes to the DOM, there is a moment that allows React to read from the DOM through the `getSnapshotBeforeUpdate()`. 3. **Commit** React works with the DOM and executes the final lifecycles respectively `componentDidMount()` for mounting, `componentDidUpdate()` for updating, and `componentWillUnmount()` for unmounting. React 16.3+ Phases (or an [interactive version](http://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/)) ![phases 16.4+](../../img_list/phases16.4.png) Before React 16.3 ![phases 16.2](../../img_list/phases.png) **[⬆ Back to Top](#table-of-contents)** 34. ### What are the lifecycle methods of React? Before React 16.3 - **componentWillMount:** Executed before rendering and is used for App level configuration in your root component. - **componentDidMount:** Executed after first rendering and here all AJAX requests, DOM or state updates, and set up event listeners should occur. - **componentWillReceiveProps:** Executed when particular prop updates to trigger state transitions. - **shouldComponentUpdate:** Determines if the component will be updated or not. By default it returns `true`. If you are sure that the component doesn't need to render after state or props are updated, you can return false value. It is a great place to improve performance as it allows you to prevent a re-render if component receives new prop. - **componentWillUpdate:** Executed before re-rendering the component when there are props & state changes confirmed by `shouldComponentUpdate()` which returns true. - **componentDidUpdate:** Mostly it is used to update the DOM in response to prop or state changes. - **componentWillUnmount:** It will be used to cancel any outgoing network requests, or remove all event listeners associated with the component. React 16.3+ - **getDerivedStateFromProps:** Invoked right before calling `render()` and is invoked on _every_ render. This exists for rare use cases where you need a derived state. Worth reading [if you need derived state](https://reactjs.org/blog/2018/06/07/you-probably-dont-need-derived-state.html). - **componentDidMount:** Executed after first rendering and where all AJAX requests, DOM or state updates, and set up event listeners should occur. - **shouldComponentUpdate:** Determines if the component will be updated or not. By default, it returns `true`. If you are sure that the component doesn't need to render after the state or props are updated, you can return a false value. It is a great place to improve performance as it allows you to prevent a re-render if component receives a new prop. - **getSnapshotBeforeUpdate:** Executed right before rendered output is committed to the DOM. Any value returned by this will be passed into `componentDidUpdate()`. This is useful to capture information from the DOM i.e. scroll position. - **componentDidUpdate:** Mostly it is used to update the DOM in response to prop or state changes. This will not fire if `shouldComponentUpdate()` returns `false`. - **componentWillUnmount** It will be used to cancel any outgoing network requests, or remove all event listeners associated with the component. **[⬆ Back to Top](#table-of-contents)** 35. ### What are Higher-Order Components? A _higher-order component_ (_HOC_) is a function that takes a component and returns a new component. Basically, it's a pattern that is derived from React's compositional nature. We call them **pure components** because they can accept any dynamically provided child component but they won't modify or copy any behavior from their input components. ```javascript const EnhancedComponent = higherOrderComponent(WrappedComponent); ``` HOC can be used for many use cases: 1. Code reuse, logic and bootstrap abstraction. 2. Render hijacking. 3. State abstraction and manipulation. 4. Props manipulation. **[⬆ Back to Top](#table-of-contents)** 36. ### How to create props proxy for HOC component? You can add/edit props passed to the component using _props proxy_ pattern like this: ```jsx harmony function HOC(WrappedComponent) { return class Test extends Component { render() { const newProps = { title: "New Header", footer: false, showFeatureX: false, showFeatureY: true, }; return ; } }; } ``` **[⬆ Back to Top](#table-of-contents)** 37. ### What is context? _Context_ provides a way to pass data through the component tree without having to pass props down manually at every level. For example, authenticated users, locale preferences, UI themes need to be accessed in the application by many components. ```javascript const { Provider, Consumer } = React.createContext(defaultValue); ``` **[⬆ Back to Top](#table-of-contents)** 38. ### What is children prop? _Children_ is a prop (`this.props.children`) that allows you to pass components as data to other components, just like any other prop you use. Component tree put between component's opening and closing tag will be passed to that component as `children` prop. There are several methods available in the React API to work with this prop. These include `React.Children.map`, `React.Children.forEach`, `React.Children.count`, `React.Children.only`, `React.Children.toArray`. A simple usage of children prop looks as below, ```jsx harmony const MyDiv = React.createClass({ render: function () { return
{this.props.children}
; }, }); ReactDOM.render( {"Hello"} {"World"} , node ); ``` **[⬆ Back to Top](#table-of-contents)** 39. ### How to write comments in React? The comments in React/JSX are similar to JavaScript Multiline comments but are wrapped in curly braces. **Single-line comments:** ```jsx harmony
{/* Single-line comments(In vanilla JavaScript, the single-line comments are represented by double slash(//)) */} {`Welcome ${user}, let's play React`}
``` **Multi-line comments:** ```jsx harmony
{/* Multi-line comments for more than one line */} {`Welcome ${user}, let's play React`}
``` **[⬆ Back to Top](#table-of-contents)** 40. ### What is the purpose of using super constructor with props argument? A child class constructor cannot make use of `this` reference until the `super()` method has been called. The same applies to ES6 sub-classes as well. The main reason for passing props parameter to `super()` call is to access `this.props` in your child constructors. **Passing props:** ```javascript class MyComponent extends React.Component { constructor(props) { super(props); console.log(this.props); // prints { name: 'John', age: 42 } } } ``` **Not passing props:** ```javascript class MyComponent extends React.Component { constructor(props) { super(); console.log(this.props); // prints undefined // but props parameter is still available console.log(props); // prints { name: 'John', age: 42 } } render() { // no difference outside constructor console.log(this.props); // prints { name: 'John', age: 42 } } } ``` The above code snippets reveals that `this.props` is different only within the constructor. It would be the same outside the constructor. **[⬆ Back to Top](#table-of-contents)** 41. ### What is reconciliation? When a component's props or state change, React decides whether an actual DOM update is necessary by comparing the newly returned element with the previously rendered one. When they are not equal, React will update the DOM. This process is called _reconciliation_. **[⬆ Back to Top](#table-of-contents)** 42. ### How to set state with a dynamic key name? If you are using ES6 or the Babel transpiler to transform your JSX code then you can accomplish this with _computed property names_. ```javascript handleInputChange(event) { this.setState({ [event.target.id]: event.target.value }) } ``` **[⬆ Back to Top](#table-of-contents)** 43. ### What would be the common mistake of function being called every time the component renders? You need to make sure that function is not being called while passing the function as a parameter. ```jsx harmony render() { // Wrong: handleClick is called instead of passed as a reference! return } ``` Instead, pass the function itself without parenthesis: ```jsx harmony render() { // Correct: handleClick is passed as a reference! return } ``` **[⬆ Back to Top](#table-of-contents)** 44. ### Is lazy function supports named exports? No, currently `React.lazy` function supports default exports only. If you would like to import modules which are named exports, you can create an intermediate module that reexports it as the default. It also ensures that tree shaking keeps working and don’t pull unused components. Let's take a component file which exports multiple named components, ```javascript // MoreComponents.js export const SomeComponent = /* ... */; export const UnusedComponent = /* ... */; ``` and reexport `MoreComponents.js` components in an intermediate file `IntermediateComponent.js` ```javascript // IntermediateComponent.js export { SomeComponent as default } from "./MoreComponents.js"; ``` Now you can import the module using lazy function as below, ```javascript import React, { lazy } from "react"; const SomeComponent = lazy(() => import("./IntermediateComponent.js")); ``` **[⬆ Back to Top](#table-of-contents)** 45. ### Why React uses `className` over `class` attribute? `class` is a keyword in JavaScript, and JSX is an extension of JavaScript. That's the principal reason why React uses `className` instead of `class`. Pass a string as the `className` prop. ```jsx harmony render() { return {'Menu'} } ``` **[⬆ Back to Top](#table-of-contents)** 46. ### What are fragments? It's a common pattern in React which is used for a component to return multiple elements. _Fragments_ let you group a list of children without adding extra nodes to the DOM. ```jsx harmony render() { return ( ) } ``` There is also a _shorter syntax_, but it's not supported in many tools: ```jsx harmony render() { return ( <> ) } ``` **[⬆ Back to Top](#table-of-contents)** 47. ### Why fragments are better than container divs? Below are the list of reasons, 1. Fragments are a bit faster and use less memory by not creating an extra DOM node. This only has a real benefit on very large and deep trees. 2. Some CSS mechanisms like _Flexbox_ and _CSS Grid_ have a special parent-child relationships, and adding divs in the middle makes it hard to keep the desired layout. 3. The DOM Inspector is less cluttered. **[⬆ Back to Top](#table-of-contents)** 48. ### What are portals in React? _Portal_ is a recommended way to render children into a DOM node that exists outside the DOM hierarchy of the parent component. ```javascript ReactDOM.createPortal(child, container); ``` The first argument is any render-able React child, such as an element, string, or fragment. The second argument is a DOM element. **[⬆ Back to Top](#table-of-contents)** 49. ### What are stateless components? If the behaviour of a component is independent of its state then it can be a stateless component. You can use either a function or a class for creating stateless components. But unless you need to use a lifecycle hook in your components, you should go for function components. There are a lot of benefits if you decide to use function components here; they are easy to write, understand, and test, a little faster, and you can avoid the `this` keyword altogether. **[⬆ Back to Top](#table-of-contents)** 50. ### What are stateful components? If the behaviour of a component is dependent on the _state_ of the component then it can be termed as stateful component. These _stateful components_ are always _class components_ and have a state that gets initialized in the `constructor`. ```javascript class App extends Component { constructor(props) { super(props); this.state = { count: 0 }; } render() { // ... } } ``` **React 16.8 Update:** Hooks let you use state and other React features without writing classes. _The Equivalent Functional Component_ ```javascript import React, {useState} from 'react'; const App = (props) => { const [count, setCount] = useState(0); return ( // JSX ) } ``` **[⬆ Back to Top](#table-of-contents)** 51. ### How to apply validation on props in React? When the application is running in _development mode_, React will automatically check all props that we set on components to make sure they have _correct type_. If the type is incorrect, React will generate warning messages in the console. It's disabled in _production mode_ due to performance impact. The mandatory props are defined with `isRequired`. The set of predefined prop types: 1. `PropTypes.number` 2. `PropTypes.string` 3. `PropTypes.array` 4. `PropTypes.object` 5. `PropTypes.func` 6. `PropTypes.node` 7. `PropTypes.element` 8. `PropTypes.bool` 9. `PropTypes.symbol` 10. `PropTypes.any` We can define `propTypes` for `User` component as below: ```jsx harmony import React from "react"; import PropTypes from "prop-types"; class User extends React.Component { static propTypes = { name: PropTypes.string.isRequired, age: PropTypes.number.isRequired, }; render() { return ( <>

{`Welcome, ${this.props.name}`}

{`Age, ${this.props.age}`}

); } } ``` **Note:** In React v15.5 _PropTypes_ were moved from `React.PropTypes` to `prop-types` library. _The Equivalent Functional Component_ ```jsx harmony import React from "react"; import PropTypes from "prop-types"; function User({ name, age }) { return ( <>

{`Welcome, ${name}`}

{`Age, ${age}`}

); } User.propTypes = { name: PropTypes.string.isRequired, age: PropTypes.number.isRequired, }; ``` **[⬆ Back to Top](#table-of-contents)** 52. ### What are the advantages of React? Below are the list of main advantages of React, 1. Increases the application's performance with _Virtual DOM_. 2. JSX makes code easy to read and write. 3. It renders both on client and server side (_SSR_). 4. Easy to integrate with frameworks (Angular, Backbone) since it is only a view library. 5. Easy to write unit and integration tests with tools such as Jest. **[⬆ Back to Top](#table-of-contents)** 53. ### What are the limitations of React? Apart from the advantages, there are few limitations of React too, 1. React is just a view library, not a full framework. 2. There is a learning curve for beginners who are new to web development. 3. Integrating React into a traditional MVC framework requires some additional configuration. 4. The code complexity increases with inline templating and JSX. 5. Too many smaller components leading to over engineering or boilerplate. **[⬆ Back to Top](#table-of-contents)** 54. ### What are error boundaries in React v16? _Error boundaries_ are components that catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI instead of the component tree that crashed. A class component becomes an error boundary if it defines a new lifecycle method called `componentDidCatch(error, info)` or `static getDerivedStateFromError() `: ```jsx harmony class ErrorBoundary extends React.Component { constructor(props) { super(props); this.state = { hasError: false }; } componentDidCatch(error, info) { // You can also log the error to an error reporting service logErrorToMyService(error, info); } static getDerivedStateFromError(error) { // Update state so the next render will show the fallback UI. return { hasError: true }; } render() { if (this.state.hasError) { // You can render any custom fallback UI return

{"Something went wrong."}

; } return this.props.children; } } ``` After that use it as a regular component: ```jsx harmony ``` **[⬆ Back to Top](#table-of-contents)** 55. ### How are error boundaries handled in React v15? React v15 provided very basic support for _error boundaries_ using `unstable_handleError` method. It has been renamed to `componentDidCatch` in React v16. **[⬆ Back to Top](#table-of-contents)** 56. ### What are the recommended ways for static type checking? Normally we use _PropTypes library_ (`React.PropTypes` moved to a `prop-types` package since React v15.5) for _type checking_ in the React applications. For large code bases, it is recommended to use _static type checkers_ such as Flow or TypeScript, that perform type checking at compile time and provide auto-completion features. **[⬆ Back to Top](#table-of-contents)** 57. ### What is the use of `react-dom` package? The `react-dom` package provides _DOM-specific methods_ that can be used at the top level of your app. Most of the components are not required to use this module. Some of the methods of this package are: 1. `render()` 2. `hydrate()` 3. `unmountComponentAtNode()` 4. `findDOMNode()` 5. `createPortal()` **[⬆ Back to Top](#table-of-contents)** 58. ### What is the purpose of render method of `react-dom`? This method is used to render a React element into the DOM in the supplied container and return a reference to the component. If the React element was previously rendered into container, it will perform an update on it and only mutate the DOM as necessary to reflect the latest changes. ``` ReactDOM.render(element, container, [callback]) ``` If the optional callback is provided, it will be executed after the component is rendered or updated. **[⬆ Back to Top](#table-of-contents)** 59. ### What is ReactDOMServer? The `ReactDOMServer` object enables you to render components to static markup (typically used on node server). This object is mainly used for _server-side rendering_ (SSR). The following methods can be used in both the server and browser environments: 1. `renderToString()` 2. `renderToStaticMarkup()` For example, you generally run a Node-based web server like Express, Hapi, or Koa, and you call `renderToString` to render your root component to a string, which you then send as response. ```javascript // using Express import { renderToString } from "react-dom/server"; import MyPage from "./MyPage"; app.get("/", (req, res) => { res.write( "My Page" ); res.write('
'); res.write(renderToString()); res.write("
"); res.end(); }); ``` **[⬆ Back to Top](#table-of-contents)** 60. ### How to use innerHTML in React? The `dangerouslySetInnerHTML` attribute is React's replacement for using `innerHTML` in the browser DOM. Just like `innerHTML`, it is risky to use this attribute considering cross-site scripting (XSS) attacks. You just need to pass a `__html` object as key and HTML text as value. In this example MyComponent uses `dangerouslySetInnerHTML` attribute for setting HTML markup: ```jsx harmony function createMarkup() { return { __html: "First · Second" }; } function MyComponent() { return
; } ``` **[⬆ Back to Top](#table-of-contents)** 61. ### How to use styles in React? The `style` attribute accepts a JavaScript object with camelCased properties rather than a CSS string. This is consistent with the DOM style JavaScript property, is more efficient, and prevents XSS security holes. ```jsx harmony const divStyle = { color: "blue", backgroundImage: "url(" + imgUrl + ")", }; function HelloWorldComponent() { return
Hello World!
; } ``` Style keys are camelCased in order to be consistent with accessing the properties on DOM nodes in JavaScript (e.g. `node.style.backgroundImage`). **[⬆ Back to Top](#table-of-contents)** 62. ### How events are different in React? Handling events in React elements has some syntactic differences: 1. React event handlers are named using camelCase, rather than lowercase. 2. With JSX you pass a function as the event handler, rather than a string. **[⬆ Back to Top](#table-of-contents)** 63. ### What will happen if you use `setState()` in constructor? When you use `setState()`, then apart from assigning to the object state React also re-renders the component and all its children. You would get error like this: _Can only update a mounted or mounting component._ So we need to use `this.state` to initialize variables inside constructor. **[⬆ Back to Top](#table-of-contents)** 64. ### What is the impact of indexes as keys? Keys should be stable, predictable, and unique so that React can keep track of elements. In the below code snippet each element's key will be based on ordering, rather than tied to the data that is being represented. This limits the optimizations that React can do. ```jsx harmony { todos.map((todo, index) => ); } ``` If you use element data for unique key, assuming todo.id is unique to this list and stable, React would be able to reorder elements without needing to reevaluate them as much. ```jsx harmony { todos.map((todo) => ); } ``` **[⬆ Back to Top](#table-of-contents)** 65. ### Is it good to use `setState()` in `componentWillMount()` method? Yes, it is safe to use `setState()` inside `componentWillMount()` method. But at the same it is recommended to avoid async initialization in `componentWillMount()` lifecycle method. `componentWillMount()` is invoked immediately before mounting occurs. It is called before `render()`, therefore setting state in this method will not trigger a re-render. Avoid introducing any side-effects or subscriptions in this method. We need to make sure async calls for component initialization happened in `componentDidMount()` instead of `componentWillMount()`. ```jsx harmony componentDidMount() { axios.get(`api/todos`) .then((result) => { this.setState({ messages: [...result.data] }) }) } ``` **[⬆ Back to Top](#table-of-contents)** 66. ### What will happen if you use props in initial state? If the props on the component are changed without the component being refreshed, the new prop value will never be displayed because the constructor function will never update the current state of the component. The initialization of state from props only runs when the component is first created. The below component won't display the updated input value: ```jsx harmony class MyComponent extends React.Component { constructor(props) { super(props); this.state = { records: [], inputValue: this.props.inputValue, }; } render() { return
{this.state.inputValue}
; } } ``` Using props inside render method will update the value: ```jsx harmony class MyComponent extends React.Component { constructor(props) { super(props); this.state = { record: [], }; } render() { return
{this.props.inputValue}
; } } ``` **[⬆ Back to Top](#table-of-contents)** 67. ### How do you conditionally render components? In some cases you want to render different components depending on some state. JSX does not render `false` or `undefined`, so you can use conditional _short-circuiting_ to render a given part of your component only if a certain condition is true. ```jsx harmony const MyComponent = ({ name, address }) => (

{name}

{address &&

{address}

}
); ``` If you need an `if-else` condition then use _ternary operator_. ```jsx harmony const MyComponent = ({ name, address }) => (

{name}

{address ?

{address}

:

{"Address is not available"}

}
); ``` **[⬆ Back to Top](#table-of-contents)** 68. ### Why we need to be careful when spreading props on DOM elements? When we _spread props_ we run into the risk of adding unknown HTML attributes, which is a bad practice. Instead we can use prop destructuring with `...rest` operator, so it will add only required props. For example, ```jsx harmony const ComponentA = () => ( ); const ComponentB = ({ isDisplay, ...domProps }) => (
{"ComponentB"}
); ``` **[⬆ Back to Top](#table-of-contents)** 69. ### How you use decorators in React? You can _decorate_ your _class_ components, which is the same as passing the component into a function. **Decorators** are flexible and readable way of modifying component functionality. ```jsx harmony @setTitle("Profile") class Profile extends React.Component { //.... } /* title is a string that will be set as a document title WrappedComponent is what our decorator will receive when put directly above a component class as seen in the example above */ const setTitle = (title) => (WrappedComponent) => { return class extends React.Component { componentDidMount() { document.title = title; } render() { return ; } }; }; ``` **Note:** Decorators are a feature that didn't make it into ES7, but are currently a _stage 2 proposal_. **[⬆ Back to Top](#table-of-contents)** 70. ### How do you memoize a component? There are memoize libraries available which can be used on function components. For example `moize` library can memoize the component in another component. ```jsx harmony import moize from "moize"; import Component from "./components/Component"; // this module exports a non-memoized component const MemoizedFoo = moize.react(Component); const Consumer = () => {
{"I will memoize the following entry:"}
; }; ``` **Update:** Since React v16.6.0, we have a `React.memo`. It provides a higher order component which memoizes component unless the props change. To use it, simply wrap the component using React.memo before you use it. ```js const MemoComponent = React.memo(function MemoComponent(props) { /* render using props */ }); OR; export default React.memo(MyFunctionComponent); ``` **[⬆ Back to Top](#table-of-contents)** 71. ### How you implement Server Side Rendering or SSR? React is already equipped to handle rendering on Node servers. A special version of the DOM renderer is available, which follows the same pattern as on the client side. ```jsx harmony import ReactDOMServer from "react-dom/server"; import App from "./App"; ReactDOMServer.renderToString(); ``` This method will output the regular HTML as a string, which can be then placed inside a page body as part of the server response. On the client side, React detects the pre-rendered content and seamlessly picks up where it left off. **[⬆ Back to Top](#table-of-contents)** 72. ### How to enable production mode in React? You should use Webpack's `DefinePlugin` method to set `NODE_ENV` to `production`, by which it strip out things like propType validation and extra warnings. Apart from this, if you minify the code, for example, Uglify's dead-code elimination to strip out development only code and comments, it will drastically reduce the size of your bundle. **[⬆ Back to Top](#table-of-contents)** 73. ### What is CRA and its benefits? The `create-react-app` CLI tool allows you to quickly create & run React applications with no configuration step. Let's create Todo App using _CRA_: ```console # Installation $ npm install -g create-react-app # Create new project $ create-react-app todo-app $ cd todo-app # Build, test and run $ npm run build $ npm run test $ npm start ``` It includes everything we need to build a React app: 1. React, JSX, ES6, and Flow syntax support. 2. Language extras beyond ES6 like the object spread operator. 3. Autoprefixed CSS, so you don’t need -webkit- or other prefixes. 4. A fast interactive unit test runner with built-in support for coverage reporting. 5. A live development server that warns about common mistakes. 6. A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps. **[⬆ Back to Top](#table-of-contents)** 74. ### What is the lifecycle methods order in mounting? The lifecycle methods are called in the following order when an instance of a component is being created and inserted into the DOM. 1. `constructor()` 2. `static getDerivedStateFromProps()` 3. `render()` 4. `componentDidMount()` **[⬆ Back to Top](#table-of-contents)** 75. ### What are the lifecycle methods going to be deprecated in React v16? The following lifecycle methods going to be unsafe coding practices and will be more problematic with async rendering. 1. `componentWillMount()` 2. `componentWillReceiveProps()` 3. `componentWillUpdate()` Starting with React v16.3 these methods are aliased with `UNSAFE_` prefix, and the unprefixed version will be removed in React v17. **[⬆ Back to Top](#table-of-contents)** 76. ### What is the purpose of `getDerivedStateFromProps()` lifecycle method? The new static `getDerivedStateFromProps()` lifecycle method is invoked after a component is instantiated as well as before it is re-rendered. It can return an object to update state, or `null` to indicate that the new props do not require any state updates. ```javascript class MyComponent extends React.Component { static getDerivedStateFromProps(props, state) { // ... } } ``` This lifecycle method along with `componentDidUpdate()` covers all the use cases of `componentWillReceiveProps()`. **[⬆ Back to Top](#table-of-contents)** 77. ### What is the purpose of `getSnapshotBeforeUpdate()` lifecycle method? The new `getSnapshotBeforeUpdate()` lifecycle method is called right before DOM updates. The return value from this method will be passed as the third parameter to `componentDidUpdate()`. ```javascript class MyComponent extends React.Component { getSnapshotBeforeUpdate(prevProps, prevState) { // ... } } ``` This lifecycle method along with `componentDidUpdate()` covers all the use cases of `componentWillUpdate()`. **[⬆ Back to Top](#table-of-contents)** 78. ### Do Hooks replace render props and higher order components? Both render props and higher-order components render only a single child but in most of the cases Hooks are a simpler way to serve this by reducing nesting in your tree. **[⬆ Back to Top](#table-of-contents)** 79. ### What is the recommended way for naming components? It is recommended to name the component by reference instead of using `displayName`. Using `displayName` for naming component: ```javascript export default React.createClass({ displayName: "TodoApp", // ... }); ``` The **recommended** approach: ```javascript export default class TodoApp extends React.Component { // ... } ``` also ```javascript const TodoApp = () => { //... }; export default TodoApp; ``` **[⬆ Back to Top](#table-of-contents)** 80. ### What is the recommended ordering of methods in component class? _Recommended_ ordering of methods from _mounting_ to _render stage_: 1. `static` methods 2. `constructor()` 3. `getChildContext()` 4. `componentWillMount()` 5. `componentDidMount()` 6. `componentWillReceiveProps()` 7. `shouldComponentUpdate()` 8. `componentWillUpdate()` 9. `componentDidUpdate()` 10. `componentWillUnmount()` 11. click handlers or event handlers like `onClickSubmit()` or `onChangeDescription()` 12. getter methods for render like `getSelectReason()` or `getFooterContent()` 13. optional render methods like `renderNavigation()` or `renderProfilePicture()` 14. `render()` **[⬆ Back to Top](#table-of-contents)** 81. ### What is a switching component? A _switching component_ is a component that renders one of many components. We need to use object to map prop values to components. For example, a switching component to display different pages based on `page` prop: ```jsx harmony import HomePage from "./HomePage"; import AboutPage from "./AboutPage"; import ServicesPage from "./ServicesPage"; import ContactPage from "./ContactPage"; const PAGES = { home: HomePage, about: AboutPage, services: ServicesPage, contact: ContactPage, }; const Page = (props) => { const Handler = PAGES[props.page] || ContactPage; return ; }; // The keys of the PAGES object can be used in the prop types to catch dev-time errors. Page.propTypes = { page: PropTypes.oneOf(Object.keys(PAGES)).isRequired, }; ``` **[⬆ Back to Top](#table-of-contents)** 82. ### Why we need to pass a function to setState()? The reason behind for this is that `setState()` is an asynchronous operation. React batches state changes for performance reasons, so the state may not change immediately after `setState()` is called. That means you should not rely on the current state when calling `setState()` since you can't be sure what that state will be. The solution is to pass a function to `setState()`, with the previous state as an argument. By doing this you can avoid issues with the user getting the old state value on access due to the asynchronous nature of `setState()`. Let's say the initial count value is zero. After three consecutive increment operations, the value is going to be incremented only by one. ```javascript // assuming this.state.count === 0 this.setState({ count: this.state.count + 1 }); this.setState({ count: this.state.count + 1 }); this.setState({ count: this.state.count + 1 }); // this.state.count === 1, not 3 ``` If we pass a function to `setState()`, the count gets incremented correctly. ```javascript this.setState((prevState, props) => ({ count: prevState.count + props.increment, })); // this.state.count === 3 as expected ``` **(OR)** ### Why function is preferred over object for `setState()`? React may batch multiple `setState()` calls into a single update for performance. Because `this.props` and `this.state` may be updated asynchronously, you should not rely on their values for calculating the next state. This counter example will fail to update as expected: ```javascript // Wrong this.setState({ counter: this.state.counter + this.props.increment, }); ``` The preferred approach is to call `setState()` with function rather than object. That function will receive the previous state as the first argument, and the props at the time the update is applied as the second argument. ```javascript // Correct this.setState((prevState, props) => ({ counter: prevState.counter + props.increment, })); ``` **[⬆ Back to Top](#table-of-contents)** 83. ### What is strict mode in React? `React.StrictMode` is a useful component for highlighting potential problems in an application. Just like ``, `` does not render any extra DOM elements. It activates additional checks and warnings for its descendants. These checks apply for _development mode_ only. ```jsx harmony import React from "react"; function ExampleApplication() { return (
); } ``` In the example above, the _strict mode_ checks apply to `` and `` components only. **[⬆ Back to Top](#table-of-contents)** 84. ### What are React Mixins? _Mixins_ are a way to totally separate components to have a common functionality. Mixins **should not be used** and can be replaced with _higher-order components_ or _decorators_. One of the most commonly used mixins is `PureRenderMixin`. You might be using it in some components to prevent unnecessary re-renders when the props and state are shallowly equal to the previous props and state: ```javascript const PureRenderMixin = require("react-addons-pure-render-mixin"); const Button = React.createClass({ mixins: [PureRenderMixin], // ... }); ``` **[⬆ Back to Top](#table-of-contents)** 85. ### Why is `isMounted()` an anti-pattern and what is the proper solution? The primary use case for `isMounted()` is to avoid calling `setState()` after a component has been unmounted, because it will emit a warning. ```javascript if (this.isMounted()) { this.setState({...}) } ``` Checking `isMounted()` before calling `setState()` does eliminate the warning, but it also defeats the purpose of the warning. Using `isMounted()` is a code smell because the only reason you would check is because you think you might be holding a reference after the component has unmounted. An optimal solution would be to find places where `setState()` might be called after a component has unmounted, and fix them. Such situations most commonly occur due to callbacks, when a component is waiting for some data and gets unmounted before the data arrives. Ideally, any callbacks should be canceled in `componentWillUnmount()`, prior to unmounting. **[⬆ Back to Top](#table-of-contents)** 86. ### What are the Pointer Events supported in React? _Pointer Events_ provide a unified way of handling all input events. In the old days we had a mouse and respective event listeners to handle them but nowadays we have many devices which don't correlate to having a mouse, like phones with touch surface or pens. We need to remember that these events will only work in browsers that support the _Pointer Events_ specification. The following event types are now available in _React DOM_: 1. `onPointerDown` 2. `onPointerMove` 3. `onPointerUp` 4. `onPointerCancel` 5. `onGotPointerCapture` 6. `onLostPointerCapture` 7. `onPointerEnter` 8. `onPointerLeave` 9. `onPointerOver` 10. `onPointerOut` **[⬆ Back to Top](#table-of-contents)** 87. ### Why should component names start with capital letter? If you are rendering your component using JSX, the name of that component has to begin with a capital letter otherwise React will throw an error as an unrecognized tag. This convention is because only HTML elements and SVG tags can begin with a lowercase letter. ```jsx harmony class SomeComponent extends Component { // Code goes here } ``` You can define component class which name starts with lowercase letter, but when it's imported it should have capital letter. Here lowercase is fine: ```jsx harmony class myComponent extends Component { render() { return
; } } export default myComponent; ``` While when imported in another file it should start with capital letter: ```jsx harmony import MyComponent from "./myComponent"; ``` #### What are the exceptions on React component naming? The component names should start with an uppercase letter but there are few exceptions to this convention. The lowercase tag names with a dot (property accessors) are still considered as valid component names. For example, the below tag can be compiled to a valid component, ```jsx harmony render() { return ( // `React.createElement(obj.component)` ) } ``` **[⬆ Back to Top](#table-of-contents)** 88. ### Are custom DOM attributes supported in React v16? Yes. In the past, React used to ignore unknown DOM attributes. If you wrote JSX with an attribute that React doesn't recognize, React would just skip it. For example, let's take a look at the below attribute: ```jsx harmony
``` Would render an empty div to the DOM with React v15: ```html
``` In React v16 any unknown attributes will end up in the DOM: ```html
``` This is useful for supplying browser-specific non-standard attributes, trying new DOM APIs, and integrating with opinionated third-party libraries. **[⬆ Back to Top](#table-of-contents)** 89. ### What is the difference between constructor and getInitialState? You should initialize state in the constructor when using ES6 classes, and `getInitialState()` method when using `React.createClass()`. **Using ES6 classes:** ```javascript class MyComponent extends React.Component { constructor(props) { super(props); this.state = { /* initial state */ }; } } ``` **Using `React.createClass()`:** ```javascript const MyComponent = React.createClass({ getInitialState() { return { /* initial state */ }; }, }); ``` **Note:** `React.createClass()` is deprecated and removed in React v16. Use plain JavaScript classes instead. **[⬆ Back to Top](#table-of-contents)** 90. ### Can you force a component to re-render without calling setState? By default, when your component's state or props change, your component will re-render. If your `render()` method depends on some other data, you can tell React that the component needs re-rendering by calling `forceUpdate()`. ```javascript component.forceUpdate(callback); ``` It is recommended to avoid all uses of `forceUpdate()` and only read from `this.props` and `this.state` in `render()`. **[⬆ Back to Top](#table-of-contents)** 91. ### What is the difference between `super()` and `super(props)` in React using ES6 classes? When you want to access `this.props` in `constructor()` then you should pass props to `super()` method. **Using `super(props)`:** ```javascript class MyComponent extends React.Component { constructor(props) { super(props); console.log(this.props); // { name: 'John', ... } } } ``` **Using `super()`:** ```javascript class MyComponent extends React.Component { constructor(props) { super(); console.log(this.props); // undefined } } ``` Outside `constructor()` both will display same value for `this.props`. **[⬆ Back to Top](#table-of-contents)** 92. ### How to loop inside JSX? You can simply use `Array.prototype.map` with ES6 _arrow function_ syntax. For example, the `items` array of objects is mapped into an array of components: ```jsx harmony {items.map((item) => ( ))} ``` But you can't iterate using `for` loop: ```jsx harmony for (let i = 0; i < items.length; i++) { } ``` This is because JSX tags are transpiled into _function calls_, and you can't use statements inside expressions. This may change thanks to `do` expressions which are _stage 1 proposal_. **[⬆ Back to Top](#table-of-contents)** 93. ### How do you access props in attribute quotes? React (or JSX) doesn't support variable interpolation inside an attribute value. The below representation won't work: ```jsx harmony ``` But you can put any JS expression inside curly braces as the entire attribute value. So the below expression works: ```jsx harmony ``` Using _template strings_ will also work: ```jsx harmony ``` **[⬆ Back to Top](#table-of-contents)** 94. ### What is React proptype array with shape? If you want to pass an array of objects to a component with a particular shape then use `React.PropTypes.shape()` as an argument to `React.PropTypes.arrayOf()`. ```javascript ReactComponent.propTypes = { arrayWithShape: React.PropTypes.arrayOf( React.PropTypes.shape({ color: React.PropTypes.string.isRequired, fontSize: React.PropTypes.number.isRequired, }) ).isRequired, }; ``` **[⬆ Back to Top](#table-of-contents)** 95. ### How to conditionally apply class attributes? You shouldn't use curly braces inside quotes because it is going to be evaluated as a string. ```jsx harmony
``` Instead you need to move curly braces outside (don't forget to include spaces between class names): ```jsx harmony
``` _Template strings_ will also work: ```jsx harmony
``` **[⬆ Back to Top](#table-of-contents)** 96. ### What is the difference between React and ReactDOM? The `react` package contains `React.createElement()`, `React.Component`, `React.Children`, and other helpers related to elements and component classes. You can think of these as the isomorphic or universal helpers that you need to build components. The `react-dom` package contains `ReactDOM.render()`, and in `react-dom/server` we have _server-side rendering_ support with `ReactDOMServer.renderToString()` and `ReactDOMServer.renderToStaticMarkup()`. **[⬆ Back to Top](#table-of-contents)** 97. ### Why ReactDOM is separated from React? The React team worked on extracting all DOM-related features into a separate library called _ReactDOM_. React v0.14 is the first release in which the libraries are split. By looking at some of the packages, `react-native`, `react-art`, `react-canvas`, and `react-three`, it has become clear that the beauty and essence of React has nothing to do with browsers or the DOM. To build more environments that React can render to, React team planned to split the main React package into two: `react` and `react-dom`. This paves the way to writing components that can be shared between the web version of React and React Native. **[⬆ Back to Top](#table-of-contents)** 98. ### How to use React label element? If you try to render a `