Merged PDF React Questions
Merged PDF React Questions
Merged PDF React Questions
What is React?
The key point in this answer is that React’s core purpose is to build UI components; it is often
referred to as just the “V” (View) in an “MVC” architecture. Therefore it has no opinions on the
other pieces of your technology stack and can be seamlessly integrated into any application.
The answer to this question will likely vary depending on the candidate's personal experiences.
The important thing is to listen for real-life examples provided and opinions on whether or not
the candidate prefers React and why.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 1/14
27/2/2020 5 Essential React.js Interview Questions and Answers
By comparing and contrasting React with another library, not only can the candidate demonstrate
a deep understanding of React, but also position themself as a potentially strong candidate.
Under what circumstances would you choose React over another technology? For example,
React vs Angular or React vs Vue.
If React only focuses on a small part of building UI components, can you explain some pitfalls
one might encounter when developing a large application?
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 2/14
27/2/2020 5 Essential React.js Interview Questions and Answers
If you were rewriting an AngularJS application in React, how much code could you expect to re-
use?
At the highest level, React components have lifecycle events that fall into three general categories:
1. Initialization
2. State/Property Updates
3. Destruction
Every React component defines these events as a mechanism for managing its properties, state,
and rendered output. Some of these events only happen once, others happen more frequently;
understanding these three general categories should help you clearly visualize when certain logic
needs to be applied.
For example, a component may need to add event listeners to the DOM when it first mounts.
However, it should probably remove those event listeners when the component unmounts from
the DOM so that irrelevant processing does not occur.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 3/14
27/2/2020 5 Essential React.js Interview Questions and Answers
onResizeHandler() {
console.log('The window has been resized!');
}
}
Within these three general buckets exist a number of specific lifecycle hooks — essentially
abstract methods — that can be utilized by any React component to more accurately manage
updates. Understanding how and when these hooks fire is key to building stable components and
will enable you to control the rendering process (improving performance).
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 4/14
27/2/2020 5 Essential React.js Interview Questions and Answers
Take a look at the diagram above. The events under “Initialization” only happen when a
component is first initialized or added to the DOM. Similarly, the events under “Destruction” only
happen once (when the component is removed from the DOM). However, the events under
“Update” happen every time the properties or state of the component change.
For example, components will automatically re-render themselves any time their properties or
state change. However, in some cases a component might not need to update — so preventing
the component from re-rendering might improve the performance of our application.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 5/14
27/2/2020 5 Essential React.js Interview Questions and Answers
return (
<div className="my-component">
<a href={props.url}>{props.name}</a>
</div>
);
}
}
Asking questions about JSX tests whether or not the candidate can state an informed opinion
towards JSX and defend it based on personal experience. Let’s cover some of the basic talking
points.
This is certainly true. Having said that, many React developers prefer to use JSX as its syntax is far
more declarative and reduces overall code complexity. Facebook certainly encourages it in all of
their documentation!
ES2015 introduced a variety of new features to JavaScript that makes writing large applications far
easier than ever before: classes, block scoping via let, and the new spread operator are just a
small portion of the additions.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 6/14
27/2/2020 5 Essential React.js Interview Questions and Answers
return (
<div className="my-component">
<AnotherClass {...props} />
</div>
);
}
}
But while ES2015 is becoming more and more widespread, it still is far from widely supported by
the major browsers — so tools like Babel or webpack are needed to convert everything into legacy
ES5 code.
Candidates that have built a React application using JSX and ES2015 can speak about some
specific pros or cons encountered, such as:
Although it took me some time to get used to the JSX and ES2015 syntax, I
discovered how much I really enjoyed using it. Specifically, I’m a big fan of…
On the other hand, I could do without the hassle of configuring webpack and
Babel. Our team ran into issues with…
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 7/14
27/2/2020 5 Essential React.js Interview Questions and Answers
pollution.
The Flux pattern is generic; it’s not specific to React applications, nor is it required to build a React
app. However, Flux is commonly used by React developers because React components are
declarative — the rendered UI (View) is simply a function of state (Store data).
Flux is relatively simple in concept, but in a technical interview, it's important that the developer
demonstrates a deep understanding of its implementation. Let’s cover of the important few
discussion points.
Description of Flux
In the Flux pattern, the Store is the central authority for all data; any mutations to the data must
occur within the store. Changes to the Store data are subsequently broadcast to subscribing
Views via events. Views then update themselves based on the new state of received data.
To request changes to any Store data, Actions may be fired. These Actions are controlled by a
central Dispatcher; Actions may not occur simultaneously, ensuring that a Store only mutates
data once per Action.
The strict unidirectional flow of this Flux pattern enforces data stability, reducing data-related
runtime errors throughout an application.
Flux vs MVC
Traditional MVC patterns have worked well for separating the concerns of data (Model), UI (View)
and logic (Controller) — but many web developers have discovered limitations with that approach
as applications grow in size. Specifically, MVC architectures frequently encounter two main
problems:
Poorly defined data flow: The cascading updates which occur across views often lead to a
tangled web of events which is difficult to debug.
Lack of data integrity: Model data can be mutated from anywhere, yielding unpredictable
results across the UI.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 8/14
27/2/2020 5 Essential React.js Interview Questions and Answers
With the Flux pattern complex UIs no longer suffer from cascading updates; any given React
component will be able to reconstruct its state based on the data provided by the store. The flux
pattern also enforces data integrity by restricting direct access to the shared data.
During a technical interview, one should discuss the differences between the Flux and MVC design
patterns within the context of a specific example:
For example, imagine we have a “master/detail” UI in which the user can select
a record from a list (master view) and edit it using an auto-populated form
(detail view).
With an MVC architecture, the data contained within the Model is shared
between both the master and detail Views. Each of these views might have its
own Controller delegating updates between the Model and the View. At any
point the data contained within the Model might be updated — and it’s
difficult to know where exactly that change occurred. Did it happen in one of
the Views sharing that Model, or in one of the Controllers? Because the
Model’s data can be mutated by any actor in the application, the risk of data
pollution in complex UIs is greater than we’d like.
With a Flux architecture, the Store data is similarly shared between multiple
Views. However this data can’t be directly mutated — all of the requests to
update the data must pass through the Action > Dispatcher chain first,
eliminating the risk of random data pollution. When updates are made to the
data, it’s now much easier to locate the code requesting those changes.
UI components in AngularJS typically rely on some internal $scope to store their data. This data
can be directly mutated from within the UI component or anything given access to $scope — a
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 9/14
27/2/2020 5 Essential React.js Interview Questions and Answers
risky situation for any part of the component or greater application which relies on that data.
By contrast, the Flux pattern encourages the use of immutable data. Because the store is the
central authority on all data, any mutations to that data must occur within the store. The risk of
data pollution is greatly reduced.
Testing
One of the most valuable aspects of applications built on Flux is that their components become
incredibly easy to test. Developers can recreate and test the state of any React component by
simply updating the store — direct interactions with the UI (with tools like Selenium) are no longer
necessary in many cases.
While Flux is a general pattern for enforcing data flow through an application, there exist many
implementations from which to choose from. There are nuances between each implementation,
as well as specific pros and cons to consider. The candidate should provide examples of real-
world experience with using Flux.
Stateless components (a flavor of “reusable” components) are nothing more than pure functions
that render DOM based solely on the properties provided to them.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 10/14
27/2/2020 5 Essential React.js Interview Questions and Answers
// ---
ReactDOM.render(
<StatelessCmp name="Art" birthday="10/01/1980" />,
document.getElementById('main')
);
This component has no need for any internal state — let alone a constructor or lifecycle handlers.
The output of the component is purely a function of the properties provided to it.
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 11/14
27/2/2020 5 Essential React.js Interview Questions and Answers
componentDidMount() {
this.refs.myComponentDiv.addEventListener('click', this.clickHandler);
}
componentWillUnmount() {
this.refs.myComponentDiv.removeEventListener('click', this.clickHandler);
}
clickHandler() {
this.setState({
clicks: this.clicks + 1
});
}
render() {
let children = this.props.children;
return (
<div className="my-component" ref="myComponentDiv">
<h2>My Component ({this.state.clicks} clicks})</h2>
<h3>{this.props.headerText}</h3>
{children}
</div>
);
}
}
Given the code defined above, can you identify two problems?
1. The constructor does not pass its props to the super class. It should include the following
line:
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 12/14
27/2/2020 5 Essential React.js Interview Questions and Answers
constructor(props) {
super(props);
// ...
}
2. The event listener (when assigned via addEventListener() ) is not properly scoped
because ES2015 doesn’t provide autobinding. Therefore the developer can re-assign
clickHandler in the constructor to include the correct binding to this:
constructor(props) {
super(props);
this.clickHandler = this.clickHandler.bind(this);
// ...
}
Can you explain what the output of this class actually does? How would you use it in an
application?
This class creates a <div /> element and attaches a click listener to it. The content of this
component includes a <h2 /> element that updates every time the user clicks on the parent <div
/> , as well as an <h3 /> element containing a provided title and whatever child elements were
passed to it.
To use this class, the candidate should import it into another class and use it like this:
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 13/14
27/2/2020 5 Essential React.js Interview Questions and Answers
Conclusion
Interviewing a React developer involves much more than just testing for React knowledge — you
should also ask questions about JavaScript and about other nuances more closely related to the
project or job in question.
This article attempted to cover some basic talking points that would demonstrate whether or not
a developer has adequate understanding of React and its core concepts. I hope you find it useful
— good luck!
https://www.codementor.io/blog/5-essential-reactjs-interview-questions-du1084ym1 14/14
27/2/2020 10 React.js interview questions (and possible answers)
How to export your React project from CodeSandbox to your desktop with Parcel.js
Interviewing for a developer role does not have to be a stressful experience. Interviewing can be fun.
Interviewing can be an opportunity to geek out about the tools and technologies you use every day.
More often than not, when you interview for a company you will be asked a broad range of
questions about various aspects of software engineering, including, but not limited to, the following;
Problem solving
Algorithms and data structures
Agile, Scrum, Kanban and other working practices
Specific tools and technologies
Experience
There is an infinite list of possible questions you may be asked, or possible tasks you may be asked
to perform, so a little preparation is a good idea.
To keep the post specific, let us talk only about React in the context of applying for a front-end
developer role. We may explore other aspects of the interview process in follow up posts.
https://developerhandbook.com/react/10-react-interview-questions/ 1/11
27/2/2020 10 React.js interview questions (and possible answers)
For example;
JSX
render() {
return (
<img />
<input />
<button>Click</button>
)
}
The above code is invalid because the render function (when inheriting from a class , and also
applies to functional components’ return value) can only return one single value, but this example
returns three values. (This is a limitation in many programming languages, not just a limitation of
React or JavaScript).
To resolve the issue, a container element (such as a div ) could be used. However, container
elements add unnecessary depth to the DOM and can also break layout of certain CSS features (such
as CSS grid).
Fragments allow you to return multiple elements without the container element.
JSX
render() {
return (
<React.Fragment>
<img />
<input />
<button>Click</button>
</React.Fragment>
)
}
As is;
JSX
render() {
return (
<>
<img />
<input />
<button>Click</button>
</>
https://developerhandbook.com/react/10-react-interview-questions/ 2/11
27/2/2020 10 React.js interview questions (and possible answers)
)
}
Difficulty: Entry.
Reasoning: To help the candidate feel more relaxed and start the conversation flowing.
React promotes building small pieces, called components, (which are often JavaScript functions or
classes), that are assembled to form a UI.
React is not a framework, like Angular. React is an unopinionated library that, when combined with a
renderer (like React-DOM), can display/capture data and respond to user inputs and network events.
As React is view-layer agnostic, you, the developer, are not limited to using React to build for the
web. Having skills and expertise in React means you can quickly and easily build websites, and also
apply those skills to building mobile applications using React Native.
Fast, reliable.
Excellent for web and mobile.
Strong community and ecosystem.
“Just JavaScript”. There are fewer language paradigms to learn, compared to a framework like
Angular or Vue.
Easier to upskill existing staff and hire staff due to the desirability of using React and
accompanying tools.
Difficulty: Entry.
Reasoning: Demonstrates deeper understanding of what React is, and why/when it should be used
(and what the benefits are to the business).
https://developerhandbook.com/react/10-react-interview-questions/ 3/11
27/2/2020 10 React.js interview questions (and possible answers)
ReactDOM, which is also isomorphic, is used for creating and updating the DOM in the context of
web pages. ReactDOM is designed to run in desktop and mobile browsers, such as; Chrome, Firefox
etc.
ReactDOM was split from React so that other UI rendering libraries (renderers) could be use in other
scenarios.
Some examples of other renderers include; React ART, React Native, react-pdf and more.
Difficulty: Entry.
Reasoning: Demonstrates that the interviewee has a broader understanding of what React is, and
how rendering works at a high level.
Shallow rendering components using Enzyme (a testing library from Airbnb) was very popular for a
long time, but is falling out of favour.
Shallow rendering renders a given component one level deep, meaning that child components are
not rendered. Properties are passed to the component and assertions are made based on the result
of the render.
JSX
function render(props) {
return shallow(<Home {...props} />)
}
https://developerhandbook.com/react/10-react-interview-questions/ 4/11
27/2/2020 10 React.js interview questions (and possible answers)
Calling shallow causes a render of the Home component. The Home component contains many
elements, including a h1 tag, which contains some text. We use a query selector to find the h1 tag,
and then check that the h1 contains the text that we are expecting. We can also test more
advanced functionality, that may include; clicking buttons, verify that an alert was displayed, fire
custom events etc.
No shallow rendering, everything is rendered “for real” using JS-DOM. This is more realistic
because this mimics how the component will run in the browser
No query selectors. Instead we select text using regular expressions, so we make assertions
based on what the user sees rather than the markup
JSX
afterEach(cleanup)
Calling render this time uses JS-DOM to render the component in a way that is more consistent
with a normal browser, then we use the supplied getByText function to query the result of the
render and find the text we need, and perform our assertions. There is less learning curve here (the
test is simpler) compared to previous approaches, and the resulting code is closer to unit
testing/integration testing best practices.
Difficulty: Intermediate.
Reasoning: The interviewee should be familiar with unit/integration testing, as they should be
testing their code on a daily basis.
What is JSX?
JSX is an abstraction over React.createElement . JSX allows us to write HTML-like code directly in
our JavaScript files. At build time (usually), JSX is converted (compiled) into JavaScript entirely, as JSX
https://developerhandbook.com/react/10-react-interview-questions/ 5/11
27/2/2020 10 React.js interview questions (and possible answers)
Following on from examples given earlier, we can see that when, for example, our JSX is compiled
using @babel/preset-react , we see the following output;
JAVASCRIPT
function (_React$Component) {
_inherits(Interview, _React$Component);
function Interview() {
_classCallCheck(this, Interview);
_createClass(Interview, [{
key: "render",
value: function render() {
return React.createElement(React.Fragment, null, React.createElement("img", null), React.createEleme
}
}]);
return Interview;
}(React.Component);
JSX
<img />
JAVASCRIPT
React.createElement('img', null)
This is JavaScript code that can now be read and executed by the runtime (browser).
Difficulty: Intermediate.
Reasoning: Demonstrates that the interviewee has a deeper understanding of the development
ecosystem, Babel, transpilation/compilation.
React Context provides a mechanism for sharing state between components without needing to
directly pass props down the component tree.
React Context API consists of a Provider and a Consumer . The Provider element wraps a
hierarchical tree of components, and makes state available to the Consumer anywhere within
the same tree. The Consumer can access state from the Provider regardless of depth, as long
as both are within the same tree.
As React Context is hierarchical and applied to a tree of components, it is normal to have many
Contexts in the same application with no conflicts to unexpected interactions between them.
Context is not mutually exclusive to existing state management tools, like Redux, local state,
useState etc.
Context is best used when working with small amounts of state (closer to the single responsibility
principal).
Difficulty: Intermediate.
Reasoning: Demonstrates working knowledge of various parts of the React library.
Prior to hooks, if you wanted to manage local state or respond to change during lifecycle functions
( componentDidMount , componentWillReceiveProps etc) when using functional components, you
would have to rewrite your code to use an ES6 class.
As JavaScript is predominantly a functional language, many developers were less inclined to use
classes, which are more commonly associated with object-oriented languages like Java and C#.
Hooks simplify state management, and make it easier to update based on state changes, when
working with functional components.
useState . Comparable to setState . Exposes the current state, and a function to update
state.
useEffect . Can be considered to be similar to; componentDidMount , componentDidUpdate , and
componentWillUnmount . Can run once on mount, or many times when other state is updated.
useContext . Enables integration with React Context API.
useReducer . Exposes state and dispatch functions that are similar to the paradigm made
popular by Redux, but with less boilerplate.
https://developerhandbook.com/react/10-react-interview-questions/ 7/11
27/2/2020 10 React.js interview questions (and possible answers)
useMemo . Useful for making long running operations more performant by caching the result
and only re-running when given props are changed.
Difficulty: Intermediate.
Reasoning: Demonstrates that the interviewee is keeping up-to date with the latest goings-on in the
React ecosystem, which due to the rate of change is very important and is an indicator of the
interviewees work ethic and attitude to change.
What is Redux?
Redux is a library agnostic (can be used with libraries other than React) global state management
tool, based on the Flux design pattern.
Redux has a central (global) store (on the window ), which contains the entire global state of the
application.
To update the global state, you dispatch an action which describes the change being made, and
the new value. A reducer (which is a pure function) is used to create a new copy of the state with the
changes, and the new state is pushed over the existing global state.
Benefits of Redux;
Difficulty: Advanced.
Reasoning: Large applications (applications with a lot of state, typically Line-of-Business enterprise
applications) often use Redux. Generally, Redux has fallen out of favour with developers but it is still
heavily in use so it can be important to have a good understanding of how it works.
https://developerhandbook.com/react/10-react-interview-questions/ 8/11
27/2/2020 10 React.js interview questions (and possible answers)
Always use a key when building elements using iterator functions, like; for loops, map ,
reduce , etc
Keys must be unique values
Avoid using indexes for keys
Difficulty: Advanced.
Reasoning: Demonstrates an understanding of/experience of pain-points encountered when
elements fail to re-render, or encountering re-rendering related performance issues.
For example;
JSX
Subsequent calls to render will result in the DOM being patched, for performance reasons (creating
DOM elements is computationally expensive).
Calling hydrate (instead of render ) will cause React to attach event listeners to the existing
markup.
JSX
There is no need to render the DOM elements and insert them, because that process has usually
already happened. Hydrate is usually used when the markup has been server-side rendered using
ReactDOMServer .
Difficulty: Advanced.
Reasoning: Demonstrates more advanced concepts of React and application design. Server-side
rendering is vital for perceived performance and SEO.
Warning: Incoming opinion. This reflects my personal experience and opinions and your views may
vary!
How a developer answers this question speaks a lot about their skillset or their perception of their
skillset.
A back-end developer
A front-end developer
A full-stack developer
A back-end developer has knowledge and expertise in back-end concerns, tooling, languages,
frameworks, and so on. They have little-to-no experience of front-end considerations, and they
never claim to (a true back-end developer will often be fast to tell you how they do not like working
on the front-end!).
A front-end developer has knowledge and expertise in front-end concerns, tooling, languages,
frameworks, and so on. A front-end developer will often (although not always) have limited
knowledge and experience of back-end concerns, but they recognise that this is not their primary
skillset. During an interview, a front-end developer may assert that they have working knowledge
and experience with back-end systems, but do not necessary consider that to be a primary skillset.
A full-stack developer. <1% of the time a true full-stack developer will have comprehensive
knowledge and experience of both back-end and front-end ecosystems. A true full-stack developer
will be as comfortable writing dockerfiles, cloudformation templates, updating DNS records, and
configuring build pipelines as they are vertically centering text using CSS.
More often than not, somebody who claims to be a full-stack developer will in fact be a back-end
developer who has had minimal exposure both JavaScript & CSS and is deficient in both areas
compared to a front-end developer.
For best results when interviewing for a role, choose to specialise. Pick the front-end, or the
back-end, whichever skillset is strongest. Specialists often are better developers because they spend
more time refining a specific set of skills, rather than a generalist.
More often than not, a specialist will get paid more money than a generalist…although you will
find the number of roles dwindles the more of a specialist you become.
https://developerhandbook.com/react/10-react-interview-questions/ 10/11
27/2/2020 10 React.js interview questions (and possible answers)
https://developerhandbook.com/react/10-react-interview-questions/ 11/11
27/2/2020 Frequently asked: React JS Interview Questions and Answers
React creates a virtual DOM. When state changes in a component it firstly runs a
“diffing” algorithm, which identifies what has changed in the virtual DOM. The second
step is reconciliation, where it updates the DOM with the results of diff.
The HTML DOM is always tree-structured — which is allowed by the structure of HTML
document. The DOM trees are huge nowadays because of large apps. Since we are more
and more pushed towards dynamic web apps (Single Page Applications — SPAs), we
need to modify the DOM tree incessantly and a lot. And this is a real performance and
development pain.
The Virtual DOM is an abstraction of the HTML DOM. It is lightweight and detached
from the browser-specific implementation details. It is not invented by React but it uses it
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 1/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
and provides it for free. ReactElements lives in the virtual DOM. They make the basic
nodes here. Once we defined the elements, ReactElements can be render into the "real"
DOM.
Whenever a ReactComponent is changing the state, diff algorithm in React runs and
identifies what has changed. And then it updates the DOM with the results of diff. The
point is - it’s done faster than it would be in the regular DOM.
JSX is a syntax extension to JavaScript and comes with the full power of JavaScript. JSX
produces React “elements”. You can embed any JavaScript expression in JSX by
wrapping it in curly braces. After compilation, JSX expressions become regular
JavaScript objects. This means that you can use JSX inside of if statements and for loops,
assign it to variables, accept it as arguments, and return it from functions. Eventhough
React does not require JSX, it is the recommended way of describing our UI in React app.
For example, below is the syntax for a basic element in React with JSX and its equivalent
without it.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 2/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
Using an ES6 class to write the same component is a little different. Instead of using a
method from the react library, we extend an ES6 class that the library defines,
Component .
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 3/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
Q4. What is ReactDOM and what is the difference between ReactDOM and React ?
Prior to v0.14, all ReactDOM functionality was part of React . But later, React and
ReactDOM were split into two different libraries.
As the name implies, ReactDOM is the glue between React and the DOM. Often, we will
only use it for one single thing: mounting with ReactDOM . Another useful feature of
For everything else, there’s React . We use React to define and create our elements, for
Q5. What are the differences between a class component and functional
component?
Class components allows us to use additional features such as local state and lifecycle
hooks. Also, to enable our component to have direct access to our store and thus holds
state.
When our component just receives props and renders them to the page, this is a ‘stateless
component’, for which a pure function can be used. These are also called dumb
components or presentational components.
From the previous question, we can say that our Booklist component is functional
components and are stateless.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 4/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
The state is a data structure that starts with a default value when a Component mounts.
It may be mutated across time, mostly as a result of user events.
Props (short for properties) are a Component’s configuration. Props are how
components talk to each other. They are received from above component and immutable
as far as the Component receiving them is concerned. A Component cannot change its
props, but it is responsible for putting together the props of its child Components. Props
do not have to just be data — callback functions may be passed in as props.
There is also the case that we can have default props so that props are set even if a parent
component doesn’t pass props down.
Props and State do similar things but are used in different ways. The majority of our
components will probably be stateless. Props are used to pass data from parent to child
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 5/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
or by the component itself. They are immutable and thus will not be changed. State is
used for mutable data, or data that will change. This is particularly useful for user input.
In HTML, form elements such as <input> , <textarea> , and <select> typically maintain
their own state and update it based on user input. When a user submits a form the values
from the aforementioned elements are sent with the form. With React it works
differently. The component containing the form will keep track of the value of the input
in it's state and will re-render the component each time the callback function e.g.
onChange is fired as the state will be updated. A form element whose value is controlled
by React in this way is called a "controlled component".
With a controlled component, every state mutation will have an associated handler
function. This makes it straightforward to modify or validate user input.
HOC’s allow you to reuse code, logic and bootstrap abstraction. HOCs are common in
third-party React libraries. The most common is probably Redux’s connect function.
Beyond simply sharing utility libraries and simple composition, HOCs are the best way to
share behavior between React Components. If you find yourself writing a lot of code in
different places that does the same thing, you may be able to refactor that code into a
reusable HOC.
create-react-app is the official CLI (Command Line Interface) for React to create React
apps with no build configuration.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 6/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
We don’t need to install or configure tools like Webpack or Babel. They are
preconfigured and hidden so that we can focus on the code. We can install easily just like
any other node modules. Then it is just one command to start the React project.
A fast interactive unit test runner with built-in support for coverage reporting.
A build script to bundle JS, CSS, and images for production, with hashes and
sourcemaps.
The basic idea of Redux is that the entire application state is kept in a single store. The
store is simply a javascript object. The only way to change the state is by firing actions
from your application and then writing reducers for these actions that modify the state.
The entire state transition is kept inside reducers and should not have any side-effects.
Redux is based on the idea that there should be only a single source of truth for your
application state, be it UI state like which tab is active or Data state like the user profile
details.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 7/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
All of these data is retained by redux in a closure that redux calls a store . It also provides
us a recipe of creating the said store, namely createStore(x) .
This store can only be updated by dispatching an action. Our App dispatches an action ,
it is passed into reducer ; the reducer returns a fresh instance of the state ; the store
Redux thunk is middleware that allows us to write action creators that return a function
instead of an action. The thunk can then be used to delay the dispatch of an action if a
certain condition is met. This allows us to handle the asyncronous dispatching of actions.
The inner function receives the store methods dispatch and getState as parameters.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 8/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
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.
When comparing previous props and state to next, a shallow comparison will check
that primitives have the same value (eg, 1 equals 1 or that true equals true) and that the
references are the same between more complex javascript values like objects and arrays.
In React, each of our components have a state. This state is like an observable.
Essentially, React knows when to re-render the scene because it is able to observe when
this data changes. Dirty checking is slower than observables because we must poll the
data at a regular interval and check all of the values in the data structure recursively. By
comparison, setting a value on the state will signal to a listener that some state has
changed, so React can simply listen for change events on the state and queue up re-
rendering.
The virtual DOM is used for efficient re-rendering of the DOM. This isn’t really related to
dirty checking your data. We could re-render using a virtual DOM with or without dirty
checking. In fact, the diff algorithm is a dirty checker itself.
We aim to re-render the virtual tree only when the state changes. So using an observable
to check if the state has changed is an efficient way to prevent unnecessary re-renders,
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 9/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
which would cause lots of unnecessary tree diffs. If nothing has changed, we do nothing.
setState() actions are asynchronous and are batched for performance gains. This is
explained in documentation as below.
setState() does not immediately mutate this.state but creates a pending state
transition. Accessing this.state after calling this method can potentially return the
existing value. There is no guarantee of synchronous operation of calls to setState and
calls may be batched for performance gains.
This is because setState alters the state and causes rerendering. This can be an expensive
operation and making it synchronous might leave the browser unresponsive. Thus the
setState calls are asynchronous as well as batched for better UI experience and
performance.
Each React component must have a render() mandatorily. It returns a single React
element which is the representation of the native DOM component. If more than one
HTML element needs to be rendered, then they must be grouped together inside one
enclosing tag such as <form> , <group> , <div> etc. This function must be kept pure i.e., it
must return the same result each time it is invoked.
This relates to stateful DOM components (form elements) and the difference:
A Controlled Component is one that takes its current value through props and
notifies changes through callbacks like onChange. A parent component “controls” it
by handling the callback and managing its own state and passing the new values as
props to the controlled component. You could also call this a “dumb component”.
A Uncontrolled Component is one that stores its 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.
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 10/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
Action — Actions are payloads of information that send data from our application to
our store. They are the only source of information for the store. We send them to the
store using store.dispatch() . Primarly, they are just an object describes what
Store — The Store is the object that brings Action and Reducer together. The store
has the following responsibilities: Holds application state; Allows access to state via
getState() ; Allows state to be updated via dispatch(action) ; Registers listeners via
subscribe(listener) .
It’s important to note that we’ll only have a single store in a Redux application. When we
want to split your data handling logic, we’ll use reducer composition instead of many
stores.
React.cloneElement clone and return a new React element using using the passed
element as the starting point. The resulting element will have the original element's
props with the new props merged in shallowly. New children will replace existing
children. key and ref from the original element will be preserved.
React.cloneElement only works if our child is a single React element. For almost
everything {this.props.children} is the better solution. Cloning is useful in some more
advanced scenarios, where a parent send in an element and the child component needs
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 11/12
27/2/2020 Frequently asked: React JS Interview Questions and Answers
to change some props on that element or add things like ref for accessing the actual
DOM element.
Q19. What is the second argument that can optionally be passed to setState and
what is its purpose?
A callback function which will be invoked when setState has finished and the
component is re-rendered.
Since the setState is asynchronous, which is why it takes in a second callback function.
With this function, we can do what we want immediately after state has been updated.
React is a JavaScript library, supporting both front end web and being run on the server,
for building user interfaces and web applications.
On the other hand, React Native is a mobile framework that compiles to native app
components, allowing us to build native mobile applications (iOS, Android, and
Windows) in JavaScript that allows us to use ReactJS to build our components, and
implements ReactJS under the hood.
With React Native it is possible to mimic the behavior of the native app in JavaScript and
at the end, we will get platform specific code as the output. We may even mix the native
code with the JavaScript if we need to optimize our application further.
For more React JS Interview Questions and answer use our Android App:
https://play.google.com/store/apps/details?id=com.vigowebs.interviewquestions
https://medium.com/@vigowebs/frequently-asked-react-js-interview-questions-and-answers-36f3dd99f486 12/12
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Core React
1. What is React?
React is an open-source frontend JavaScript library which 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
It uses VirtualDOM instead 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
3. 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 return as JavaScript function to the render function.
⬆ Back to Top
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.
https://github.com/sudheerj/reactjs-interview-questions 1/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
{
type: 'div',
props: {
children: 'Login',
id: 'login-btn'
}
}
<div id='login-btn'>Login</div>
Whereas a component can be declared in several different ways. It can be a class with a render() method.
Alternatively, in simple cases, it can be defined as a function. In either case, it takes props as an input, and returns a JSX
tree as the output:
⬆ Back to Top
i. Function Components: This is the simplest way to create a component. Those are pure JavaScript functions that
accept props object as first parameter and return React elements:
ii. Class Components: You can also use ES6 class to define a component. The above function component can be
written as:
https://github.com/sudheerj/reactjs-interview-questions 2/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
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
an user component with message state,
this.state = {
message: 'Welcome to React world'
}
}
render() {
return (
<div>
<h1>{this.state.message}</h1>
</div>
)
}
}
https://github.com/sudheerj/reactjs-interview-questions 3/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
State is similar to props, but it is private and fully controlled by the component. i.e, It is not accessible to any component
other than the one that owns and sets it.
⬆ Back to Top
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.
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
⬆ Back to Top
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
If you try to update state directly then it won't re-render the component.
//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.
//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
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.
setState({ name: 'John' }, () => console.log('The name has updated and component re-rendered'))
⬆ Back to Top
13. What is the difference between HTML and React event handling?
<button onclick='activateLasers()'>
<button onClick={activateLasers}>
function handleClick(event) {
event.preventDefault()
console.log('The link was clicked.')
}
iii. In HTML, you need to invoke the function by appending () Whereas in react you should not append () with the
function name. (refer "activateLasers" function in the first point for example)
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 5/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
i. Binding in Constructor: In JavaScript classes, the methods are not bound by default. The same thing applies for
React event handlers defined as class methods. Normally we bind them in constructor.
handleClick() {
// ...
}
}
ii. 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.
handleClick = () => {
console.log('this is:', this)
}
<button onClick={this.handleClick}>
{'Click me'}
</button>
iii. Arrow functions in callbacks: You can use arrow functions directly in the callbacks.
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
You can use an arrow function to wrap around an event handler and pass parameters:
Apart from these two approaches, you can also pass arguments to a function which is defined as array function
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 6/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
SyntheticEvent is a cross-browser wrapper around the browser's native event. It's API is same as the browser's native
event, including stopPropagation() and preventDefault() , except the events work identically across all browsers.
⬆ Back to Top
<h1>Hello!</h1>
{
messages.length > 0 && !isLogin?
<h2>
You have {messages.length} unread messages.
</h2>
:
<h2>
You don't have unread messages.
</h2>
}
⬆ Back to Top
18. What are "key" props and what is the benefit of using them in arrays of elements?
A key is a special string attribute you should include when creating arrays of elements. Keys help React identify which
items have changed, are added, or are removed.
When you don't have stable IDs for rendered items, you may use the item index as a key as a last resort:
Note:
i. Using indexes for keys is not recommended if the order of items may change. This can negatively impact
performance and may cause issues with component state.
ii. If you extract list item as separate component then apply keys on list component instead of li tag.
iii. There will be a warning message in the console if the key prop is not present on list items.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 7/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
i. This is a recently added approach. Refs are created using React.createRef() method and attached to React
elements via the ref attribute. In order to use refs throughout the component, just assign the ref to the instance
property within constructor.
ii. You can also use ref callbacks approach regardless of React version. For example, the search bar component's input
element accessed as follows,
You can also use refs in function components using closures. Note: You can also use inline ref callbacks even though it is
not a recommended approach
⬆ Back to Top
Ref forwarding is a feature that lets some components take a ref they receive, and pass it further down to a child.
https://github.com/sudheerj/reactjs-interview-questions 8/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
It is preferred to use callback refs over findDOMNode() API. Because findDOMNode() prevents certain improvements in
React in the future.
render() {
return <div />
}
}
render() {
return <div ref={this.node} />
}
}
⬆ Back to Top
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.
i. 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.
ii. 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.
iii. 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.
iv. It doesn't work as most people would expect with the "render callback" pattern (e.g. )
render() {
return <DataTable data={this.props.data} renderRow={this.renderRow} />
https://github.com/sudheerj/reactjs-interview-questions 9/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
}
}
⬆ Back to Top
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
i. Whenever any underlying data changes, the entire UI is re-rendered in Virtual DOM representation.
ii. Then the difference between the previous DOM representation and the new one is calculated.
https://github.com/sudheerj/reactjs-interview-questions 10/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
iii. Once the calculations are done, the real DOM will be updated with only the things that have actually changed.
⬆ Back to Top
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
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
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.
⬆ Back to Top
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,
handleChange(event) {
this.setState({value: event.target.value.toUpperCase()})
}
⬆ Back to Top
In the below UserProfile component, the name input is accessed using ref.
https://github.com/sudheerj/reactjs-interview-questions 11/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
handleSubmit(event) {
alert('A name was submitted: ' + this.input.current.value)
event.preventDefault()
}
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
{'Name:'}
<input type="text" ref={this.input} />
</label>
<input type="submit" value="Submit" />
</form>
);
}
}
⬆ Back to Top
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
⬆ Back to Top
i. Mounting: The component is ready to mount in the browser DOM. This phase covers initialization from
constructor() , getDerivedStateFromProps() , render() , and componentDidMount() lifecycle methods.
ii. Updating: In this phase, the component get 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.
iii. Unmounting: In this last phase, the component is not needed and get 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
i. Render The component will render without any side-effects. This applies for Pure components and in this phase,
React can pause, abort, or restart the render.
https://github.com/sudheerj/reactjs-interview-questions 12/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
ii. 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() .
iii. Commit React works with the DOM and executes the final lifecycles respectively componentDidMount() for
mounting, componentDidUpdate() for updating, and componentWillUnmount() for unmounting.
⬆ Back to Top
getDerivedStateFromProps: Invoked right before calling render() and is invoked on every render. This exists for
rare use cases where you need derived state. Worth reading if you need derived state.
https://github.com/sudheerj/reactjs-interview-questions 13/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
componentDidMount: Executed after first rendering and here 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 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.
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.
Before 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.
⬆ Back to Top
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.
⬆ Back to Top
You can add/edit props passed to the component using props proxy pattern like this:
function HOC(WrappedComponent) {
return class Test extends Component {
https://github.com/sudheerj/reactjs-interview-questions 14/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
render() {
const newProps = {
title: 'New Header',
footer: false,
showFeatureX: false,
showFeatureY: true
}
⬆ Back to Top
⬆ Back to Top
There are a number of 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,
ReactDOM.render(
<MyDiv>
<span>{'Hello'}</span>
<span>{'World'}</span>
</MyDiv>,
node
)
⬆ Back to Top
The comments in React/JSX are similar to JavaScript Multiline comments but are wrapped in curly braces.
Single-line comments:
<div>
{/* Single-line comments(In vanilla JavaScript, the single-line comments are represented by double slash(//))
{`Welcome ${user}, let's play React`}
</div>
https://github.com/sudheerj/reactjs-interview-questions 15/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Multi-line comments:
<div>
{/* Multi-line comments for more than
one line */}
{`Welcome ${user}, let's play React`}
</div>
⬆ Back to Top
40. What is the purpose of using super constructor with props argument?
A child class constructor cannot make use of this reference until super() method has been called. The same applies
for ES6 sub-classes as well. The main reason of passing props parameter to super() call is to access this.props in your
child constructors.
Passing props:
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
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 16/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
If you are using ES6 or the Babel transpiler to transform your JSX code then you can accomplish this with computed
property names.
handleInputChange(event) {
this.setState({ [event.target.id]: event.target.value })
}
⬆ Back to Top
43. Whatwould 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.
render() {
// Wrong: handleClick is called instead of passed as a reference!
return <button onClick={this.handleClick()}>{'Click Me'}</button>
}
render() {
// Correct: handleClick is passed as a reference!
return <button onClick={this.handleClick}>{'Click Me'}</button>
}
⬆ Back to Top
// MoreComponents.js
export const SomeComponent = /* ... */;
export const UnusedComponent = /* ... */;
// IntermediateComponent.js
export { SomeComponent as default } from "./MoreComponents.js";
Now you can import the module using lazy function as below,
⬆ Back to Top
render() {
return <span className={'menu navigation-menu'}>{'Menu'}</span>
}
https://github.com/sudheerj/reactjs-interview-questions 17/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
render() {
return (
<React.Fragment>
<ChildA />
<ChildB />
<ChildC />
</React.Fragment>
)
}
There is also a shorter syntax, but it's not supported in many tools:
render() {
return (
<>
<ChildA />
<ChildB />
<ChildC />
</>
)
}
⬆ Back to Top
⬆ Back to Top
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
https://github.com/sudheerj/reactjs-interview-questions 18/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
If the behaviour 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
render() {
// ...
}
}
React 16.8 Update: Hooks let you use state and other React features without writing classes.
return (
// JSX
)
}
⬆ Back to Top
i. PropTypes.number
ii. PropTypes.string
iii. PropTypes.array
iv. PropTypes.object
v. PropTypes.func
vi. PropTypes.node
vii. PropTypes.element
viii. PropTypes.bool
ix. PropTypes.symbol
https://github.com/sudheerj/reactjs-interview-questions 19/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
x. PropTypes.any
render() {
return (
<>
<h1>{`Welcome, ${this.props.name}`}</h1>
<h2>{`Age, ${this.props.age}`}</h2>
</>
)
}
}
Note: In React v15.5 PropTypes were moved from React.PropTypes to prop-types library.
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
A class component becomes an error boundary if it defines a new lifecycle method called componentDidCatch(error,
info) or static getDerivedStateFromError() :
https://github.com/sudheerj/reactjs-interview-questions 20/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
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 <h1>{'Something went wrong.'}</h1>
}
return this.props.children
}
}
<ErrorBoundary>
<MyWidget />
</ErrorBoundary>
⬆ Back to Top
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
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
i. render()
ii. hydrate()
iii. unmountComponentAtNode()
iv. findDOMNode()
v. createPortal()
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 21/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
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.
If the optional callback is provided, it will be executed after the component is rendered or updated.
⬆ Back to Top
i. renderToString()
ii. 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.
// using Express
import { renderToString } from 'react-dom/server'
import MyPage from './MyPage'
⬆ Back to Top
In this example MyComponent uses dangerouslySetInnerHTML attribute for setting HTML markup:
function createMarkup() {
return { __html: 'First · Second' }
}
function MyComponent() {
return <div dangerouslySetInnerHTML={createMarkup()} />
}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 22/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
const divStyle = {
color: 'blue',
backgroundImage: 'url(' + imgUrl + ')'
};
function HelloWorldComponent() {
return <div style={divStyle}>Hello World!</div>
}
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
i. React event handlers are named using camelCase, rather than lowercase.
ii. With JSX you pass a function as the event handler, rather than a string.
⬆ Back to Top
⬆ Back to Top
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.
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.
{todos.map((todo) =>
<Todo {...todo}
key={todo.id} />
)}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 23/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
componentDidMount() {
axios.get(`api/todos`)
.then((result) => {
this.setState({
messages: [...result.data]
})
})
}
⬆ Back to Top
this.state = {
records: [],
inputValue: this.props.inputValue
};
}
render() {
return <div>{this.state.inputValue}</div>
}
}
this.state = {
record: []
}
}
render() {
return <div>{this.props.inputValue}</div>
}
}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 24/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
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.
⬆ Back to Top
⬆ Back to Top
@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() {
https://github.com/sudheerj/reactjs-interview-questions 25/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
return <WrappedComponent {...this.props} />
}
}
}
Note: Decorators are a feature that didn't make it into ES7, but are currently a stage 2 proposal.
⬆ Back to Top
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.
⬆ Back to Top
ReactDOMServer.renderToString(<App />)
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
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
https://github.com/sudheerj/reactjs-interview-questions 26/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
# Installation
$ npm install -g create-react-app
⬆ Back to Top
i. constructor()
ii. static getDerivedStateFromProps()
iii. render()
iv. componentDidMount()
⬆ Back to Top
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.
i. componentWillMount()
ii. componentWillReceiveProps()
iii. 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
https://github.com/sudheerj/reactjs-interview-questions 27/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
This lifecycle method along with componentDidUpdate() covers all the use cases of componentWillReceiveProps() .
⬆ Back to Top
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() .
This lifecycle method along with componentDidUpdate() covers all the use cases of componentWillUpdate() .
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
i. static methods
ii. constructor()
iii. getChildContext()
https://github.com/sudheerj/reactjs-interview-questions 28/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
iv. componentWillMount()
v. componentDidMount()
vi. componentWillReceiveProps()
vii. shouldComponentUpdate()
viii. componentWillUpdate()
ix. componentDidUpdate()
x. componentWillUnmount()
xi. click handlers or event handlers like onClickSubmit() or onChangeDescription()
xii. getter methods for render like getSelectReason() or getFooterContent()
xiii. optional render methods like renderNavigation() or renderProfilePicture()
xiv. render()
⬆ Back to Top
For example, a switching component to display different pages based on page prop:
const PAGES = {
home: HomePage,
about: AboutPage,
services: ServicesPage,
contact: ContactPage
}
// 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
Let's say the initial count value is zero. After three consecutive increment operations, the value is going to be
incremented only by one.
https://github.com/sudheerj/reactjs-interview-questions 29/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
this.setState({ count: this.state.count + 1 })
this.setState({ count: this.state.count + 1 })
// this.state.count === 1, not 3
⬆ Back to Top
function ExampleApplication() {
return (
<div>
<Header />
<React.StrictMode>
<div>
<ComponentOne />
<ComponentTwo />
</div>
</React.StrictMode>
<Footer />
</div>
)
}
In the example above, the strict mode checks apply to <ComponentOne> and <ComponentTwo> components only.
⬆ Back to Top
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:
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 30/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
The primary use case for isMounted() is to avoid calling setState() after a component has been unmounted, because
it will emit a warning.
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
i. onPointerDown
ii. onPointerMove
iii. onPointerUp
iv. onPointerCancel
v. onGotPointerCapture
vi. onLostPointerCapture
vii. onPointerEnter
viii. onPointerLeave
ix. onPointerOver
x. onPointerOut
⬆ Back to Top
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:
https://github.com/sudheerj/reactjs-interview-questions 31/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
}
}
While when imported in another file it should start with capital letter:
⬆ Back to Top
<div />
This is useful for supplying browser-specific non-standard attributes, trying new DOM APIs, and integrating with
opinionated third-party libraries.
⬆ Back to Top
Using React.createClass() :
Note: React.createClass() is deprecated and removed in React v16. Use plain JavaScript classes instead.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 32/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
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
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) :
Using super() :
⬆ Back to Top
<tbody>
{items.map(item => <SomeComponent key={item.id} name={item.name} />)}
</tbody>
<tbody>
for (let i = 0; i < items.length; i++) {
<SomeComponent key={items[i].id} name={items[i].name} />
}
</tbody>
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
https://github.com/sudheerj/reactjs-interview-questions 33/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
But you can put any JS expression inside curly braces as the entire attribute value. So the below expression works:
⬆ Back to Top
ReactComponent.propTypes = {
arrayWithShape: React.PropTypes.arrayOf(React.PropTypes.shape({
color: React.PropTypes.string.isRequired,
fontSize: React.PropTypes.number.isRequired
})).isRequired
}
⬆ Back to Top
Instead you need to move curly braces outside (don't forget to include spaces between class names):
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 34/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
<label for={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
<label htmlFor={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
⬆ Back to Top
If you're using React Native then you can use the array notation:
⬆ Back to Top
componentWillMount() {
this.updateDimensions()
}
componentDidMount() {
window.addEventListener('resize', this.updateDimensions)
}
componentWillUnmount() {
https://github.com/sudheerj/reactjs-interview-questions 35/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
window.removeEventListener('resize', this.updateDimensions)
}
updateDimensions() {
this.setState({width: window.innerWidth, height: window.innerHeight})
}
render() {
return <span>{this.state.width} x {this.state.height}</span>
}
}
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
103. What is the recommended approach of removing an array element in React state?
For example, let's create a removeItem() method for updating the state.
removeItem(index) {
this.setState({
data: this.state.data.filter((item, i) => i !== index)
})
}
⬆ Back to Top
render() {
return false
}
render() {
return null
}
https://github.com/sudheerj/reactjs-interview-questions 36/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
render() {
return []
}
render() {
return <React.Fragment></React.Fragment>
}
render() {
return <></>
}
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
render() {
return (
<div>
<input
defaultValue={'Won\'t focus'}
/>
<input
ref={(input) => this.nameInput = input}
https://github.com/sudheerj/reactjs-interview-questions 37/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
defaultValue={'Will focus'}
/>
</div>
)
}
}
⬆ Back to Top
this.setState(prevState => ({
user: {
...prevState.user,
age: 42
}
}))
⬆ Back to Top
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.
// 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.
// Correct
this.setState((prevState, props) => ({
counter: prevState.counter + props.increment
}))
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 38/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
110. How can we find the version of React at runtime in the browser?
You can use React.version to get the version.
ReactDOM.render(
<div>{`React version: ${REACT_VERSION}`}</div>,
document.getElementById('app')
)
⬆ Back to Top
Create a file called (something like) polyfills.js and import it into root index.js file. Run npm install core-js
or yarn add core-js and import your specific required features.
import 'core-js/fn/array/find'
import 'core-js/fn/array/includes'
import 'core-js/fn/number/is-nan'
Use the polyfill.io CDN to retrieve custom, browser-specific polyfills by adding this line to index.html :
<script src='https://cdn.polyfill.io/v2/polyfill.min.js?features=default,Array.prototype.includes'></script>
In the above script we had to explicitly request the Array.prototype.includes feature as it is not included in the
default feature set.
⬆ Back to Top
"scripts": {
"start": "set HTTPS=true && react-scripts start"
}
⬆ Back to Top
NODE_PATH=src/app
After that restart the development server. Now you should be able to import anything inside src/app without relative
paths.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 39/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
history.listen(function (location) {
window.ga('set', 'page', location.pathname + location.search)
window.ga('send', 'pageview', location.pathname + location.search)
})
⬆ Back to Top
componentDidMount() {
this.interval = setInterval(() => this.setState({ time: Date.now() }), 1000)
}
componentWillUnmount() {
clearInterval(this.interval)
}
⬆ Back to Top
<div style={{
transform: 'rotate(90deg)',
WebkitTransform: 'rotate(90deg)', // note the capital 'W' here
msTransform: 'rotate(90deg)' // 'ms' is the only lowercase vendor prefix
}} />
⬆ Back to Top
117. How to import and export components using React and ES6?
You should use default for exporting the components
With the export specifier, the MyProfile is going to be the member and exported to this module and the same can be
imported without mentioning the name in other components.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 40/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
render(){
return (
<obj.component /> // `React.createElement(obj.component)`
)
}
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
this.inputElement.click()
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 41/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
There are two common practices for React project file structure.
One common way to structure projects is locate CSS, JS, and tests together, grouped by feature or route.
common/
├─ Avatar.js
├─ Avatar.css
├─ APIUtils.js
└─ APIUtils.test.js
feed/
├─ index.js
├─ Feed.js
├─ Feed.css
├─ FeedStory.js
├─ FeedStory.test.js
└─ FeedAPI.js
profile/
├─ index.js
├─ Profile.js
├─ ProfileHeader.js
├─ ProfileHeader.css
└─ ProfileAPI.js
api/
├─ APIUtils.js
├─ APIUtils.test.js
├─ ProfileAPI.js
└─ UserAPI.js
components/
├─ Avatar.js
├─ Avatar.css
├─ Feed.js
├─ Feed.css
├─ FeedStory.js
├─ FeedStory.test.js
├─ Profile.js
├─ ProfileHeader.js
└─ ProfileHeader.css
⬆ Back to Top
⬆ Back to Top
It is recommended to avoid hard coding style values in components. Any values that are likely to be used across
different UI components should be extracted into their own modules.
https://github.com/sudheerj/reactjs-interview-questions 42/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
ESLint is a popular JavaScript linter. There are plugins available that analyse specific code styles. One of the most
common for React is an npm package called eslint-plugin-react . By default, it will check a number of best practices,
with rules checking things from keys in iterators to a complete set of prop types. Another popular plugin is eslint-
plugin-jsx-a11y , which will help fix common issues with accessibility. As JSX offers slightly different syntax to regular
HTML, issues with alt text and tabindex , for example, will not be picked up by regular plugins.
⬆ Back to Top
127. How to make AJAX call and in which component lifecycle methods should I make an AJAX
call?
You can use AJAX libraries such as Axios, jQuery AJAX, and the browser built-in fetch . You should fetch data in the
componentDidMount() lifecycle method. This is so you can use setState() to update your component when the data is
retrieved.
For example, the employees list fetched from API and set local state:
componentDidMount() {
fetch('https://api.example.com/items')
.then(res => res.json())
.then(
(result) => {
this.setState({
employees: result.employees
})
},
(error) => {
this.setState({ error })
}
)
}
https://github.com/sudheerj/reactjs-interview-questions 43/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
render() {
const { error, employees } = this.state
if (error) {
return <div>Error: {error.message}</div>;
} else {
return (
<ul>
{employees.map(employee => (
<li key={employee.name}>
{employee.name}-{employee.experience}
</li>
))}
</ul>
)
}
}
}
⬆ Back to Top
Libraries such as React Router and DownShift are using this pattern.
React Router
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
i. <BrowserRouter>
ii. <HashRouter>
iii. <MemoryRouter>
https://github.com/sudheerj/reactjs-interview-questions 44/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
The above components will create browser, hash, and memory history instances. React Router v4 makes the properties
and methods of the history instance associated with your router available through the context in the router object.
⬆ Back to Top
i. push()
ii. replace()
If you think of the history as an array of visited locations, push() will add a new location to the array and replace()
will replace the current location in the array with the new one.
⬆ Back to Top
The withRouter() higher-order function will inject the history object as a prop of the component. This object
provides push() and replace() methods to avoid the usage of context.
The <Route> component passes the same props as withRouter() , so you will be able to access the history
methods through the history prop.
https://github.com/sudheerj/reactjs-interview-questions 45/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
onClick={() => {
context.history.push('/new-location')
}}
>
{'Click Me!'}
</button>
)
Button.contextTypes = {
history: React.PropTypes.shape({
push: React.PropTypes.func.isRequired
})
}
⬆ Back to Top
⬆ Back to Top
135. Why you get "Router may have only one child element" warning?
You have to wrap your Route's in a <Switch> block because <Switch> is unique in that it renders a route exclusively.
<Router>
<Switch>
<Route {/* ... */} />
<Route {/* ... */} />
</Switch>
</Router>
⬆ Back to Top
this.props.history.push({
pathname: '/template',
https://github.com/sudheerj/reactjs-interview-questions 46/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
search: '?name=sudheer',
state: { detail: response.data }
})
⬆ Back to Top
A <Switch> renders the first child <Route> that matches. A <Route> with no path always matches. So you just need to
simply drop path attribute as below
<Switch>
<Route exact path="/" component={Home}/>
<Route path="/user" component={User}/>
<Route component={NotFound} />
</Switch>
⬆ Back to Top
i. Create a module that exports a history object and import this module across the project.
ii. You should use the <Router> component instead of built-in routers. Imported the above history.js inside
index.js file:
ReactDOM.render((
<Router history={history}>
<App />
</Router>
), holder)
iii. You can also use push method of history object similar to built-in history object:
// some-other-file.js
import history from './history'
history.push('/go-here')
⬆ Back to Top
The react-router package provides <Redirect> component in React Router. Rendering a <Redirect> will navigate to
a new location. Like server-side redirects, the new location will override the current location in the history stack.
https://github.com/sudheerj/reactjs-interview-questions 47/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
React Internationalization
⬆ Back to Top
The React Intl library makes internalization in React straightforward, with off-the-shelf components and an API that can
handle everything from formatting strings, dates, and numbers, to pluralization. React Intl is part of FormatJS which
provides bindings to React via its components and API.
⬆ Back to Top
⬆ Back to Top
<FormattedMessage
id={'account'}
defaultMessage={'The amount is less than minimum balance.'}
/>
formatMessage(messages.accountMessage)
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 48/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
The <Formatted... /> components from react-intl return elements, not plain text, so they can't be used for
placeholders, alt text, etc. In that case, you should use lower level API formatMessage() . You can inject the intl object
into your component using injectIntl() higher-order component and then format the message using
formatMessage() available on that object.
MyComponent.propTypes = {
intl: intlShape.isRequired
}
⬆ Back to Top
You can get the current locale in any component of your application using injectIntl() :
MyComponent.propTypes = {
intl: intlShape.isRequired
}
⬆ Back to Top
MyComponent.propTypes = {
intl: intlShape.isRequired
}
https://github.com/sudheerj/reactjs-interview-questions 49/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
React Testing
⬆ Back to Top
function MyComponent() {
return (
<div>
<span className={'heading'}>{'Title'}</span>
<span className={'description'}>{'Description'}</span>
</div>
)
}
// in your test
const renderer = new ShallowRenderer()
renderer.render(<MyComponent />)
expect(result.type).toBe('div')
expect(result.props.children).toEqual([
<span className={'heading'}>{'Title'}</span>,
<span className={'description'}>{'Description'}</span>
])
⬆ Back to Top
This package provides a renderer that can be used to render components to pure JavaScript objects, without depending
on the DOM or a native mobile environment. This package makes it easy to grab a snapshot of the platform view
hierarchy (similar to a DOM tree) rendered by a ReactDOM or React Native without using a browser or jsdom .
console.log(testRenderer.toJSON())
// {
// type: 'a',
// props: { href: 'https://www.facebook.com/' },
https://github.com/sudheerj/reactjs-interview-questions 50/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
// children: [ 'Facebook' ]
// }
⬆ Back to Top
ReactTestUtils are provided in the with-addons package and allow you to perform actions against a simulated DOM for
the purpose of unit testing.
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
{
"scripts": {
"test": "jest"
}
}
Finally, run yarn test or npm test and Jest will print a result:
https://github.com/sudheerj/reactjs-interview-questions 51/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
$ yarn test
PASS ./sum.test.js
✓ adds 1 + 2 to equal 3 (2ms)
React Redux
⬆ Back to Top
Flux is an application design paradigm used as a replacement for the more traditional MVC pattern. It is not a framework
or a library but a new kind of architecture that complements React and the concept of Unidirectional Data Flow.
Facebook uses this pattern internally when working with React.
The workflow between dispatcher, stores and views components with distinct inputs and outputs as follows:
⬆ Back to Top
Redux is a predictable state container for JavaScript apps based on the Flux design pattern. Redux can be used together
with React, or with any other view library. It is tiny (about 2kB) and has no dependencies.
⬆ Back to Top
i. Single source of truth: The state of your whole application is stored in an object tree within a single store. The
single state tree makes it easier to keep track of changes over time and debug or inspect the application.
ii. State is read-only: The only way to change the state is to emit an action, an object describing what happened. This
ensures that neither the views nor the network callbacks will ever write directly to the state.
iii. Changes are made with pure functions: To specify how the state tree is transformed by actions, you write reducers.
Reducers are just pure functions that take the previous state and an action as parameters, and return the next state.
⬆ Back to Top
i. You will need to learn to avoid mutations: Flux is un-opinionated about mutating data, but Redux doesn't like
mutations and many packages complementary to Redux assume you never mutate the state. You can enforce this
https://github.com/sudheerj/reactjs-interview-questions 52/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
with dev-only packages like redux-immutable-state-invariant , Immutable.js, or instructing your team to write non-
mutating code.
ii. You're going to have to carefully pick your packages: While Flux explicitly doesn't try to solve problems such as
undo/redo, persistence, or forms, Redux has extension points such as middleware and store enhancers, and it has
spawned a rich ecosystem.
iii. There is no nice Flow integration yet: Flux currently lets you do very impressive static type checks which Redux
doesn't support yet.
⬆ Back to Top
mapDispatchToProps() is a utility which will help your component to fire an action event (dispatching action which may
cause change of application state):
Recommend always using the “object shorthand” form for the mapDispatchToProps
Redux wrap it in another function that looks like (…args) => dispatch(onTodoClick(…args)), and pass that wrapper
function as a prop to your component.
const mapDispatchToProps = ({
onTodoClick
})
⬆ Back to Top
Dispatching an action within a reducer is an anti-pattern. Your reducer should be without side effects, simply digesting
the action payload and returning a new state object. Adding listeners and dispatching actions within the reducer can
lead to chained actions and other side effects.
⬆ Back to Top
store = createStore(myReducer)
https://github.com/sudheerj/reactjs-interview-questions 53/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
export default store
⬆ Back to Top
i. DOM manipulation is very expensive which causes applications to behave slow and inefficient.
ii. Due to circular dependencies, a complicated model was created around models and views.
iii. Lot of data changes happens for collaborative applications(like Google Docs).
iv. No way to do undo (travel back in time) easily without adding so much extra code.
⬆ Back to Top
These libraries are very different for very different purposes, but there are some vague similarities.
Redux is a tool for managing state throughout the application. It is usually used as an architecture for UIs. Think of it as
an alternative to (half of) Angular. RxJS is a reactive programming library. It is usually used as a tool to accomplish
asynchronous tasks in JavaScript. Think of it as an alternative to Promises. Redux uses the Reactive paradigm because
the Store is reactive. The Store observes actions from a distance, and changes itself. RxJS also uses the Reactive
paradigm, but instead of being an architecture, it gives you basic building blocks, Observables, to accomplish this
pattern.
⬆ Back to Top
You can dispatch an action in componentDidMount() method and in render() method you can verify the data.
render() {
return this.props.isLoaded
? <div>{'Loaded'}</div>
: <div>{'Not Loaded'}</div>
}
}
⬆ Back to Top
You need to follow two steps to use your store in your container:
i. Use mapStateToProps() : It maps the state variables from your store to the props that you specify.
ii. Connect the above props to your container: The object returned by the mapStateToProps function is connected to
the container. You can import connect() from react-redux .
https://github.com/sudheerj/reactjs-interview-questions 54/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
function mapStateToProps(state) {
return { containerData: state.data }
}
⬆ Back to Top
For example, let us take rootReducer() to return the initial state after USER_LOGOUT action. As we know, reducers are
supposed to return the initial state when they are called with undefined as the first argument, no matter the action.
In case of using redux-persist , you may also need to clean your storage. redux-persist keeps a copy of your state in
a storage engine. First, you need to import the appropriate storage engine and then, to parse the state before setting it
to undefined and clean each storage state key.
state = undefined
}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 55/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
The @ symbol is in fact a JavaScript expression used to signify decorators. Decorators make it possible to annotate and
modify classes and properties at design time.
Without decorator:
function mapStateToProps(state) {
return { todos: state.todos }
}
function mapDispatchToProps(dispatch) {
return { actions: bindActionCreators(actionCreators, dispatch) }
}
With decorator:
function mapStateToProps(state) {
return { todos: state.todos }
}
function mapDispatchToProps(dispatch) {
return { actions: bindActionCreators(actionCreators, dispatch) }
}
@connect(mapStateToProps, mapDispatchToProps)
export default class MyApp extends React.Component {
// ...define your main app here
}
The above examples are almost similar except the usage of decorator. The decorator syntax isn't built into any JavaScript
runtimes yet, and is still experimental and subject to change. You can use babel for the decorators support.
⬆ Back to Top
165. What is the difference between React context and React Redux?
You can use Context in your application directly and is going to be great for passing down data to deeply nested
components which what it was designed for. Whereas Redux is much more powerful and provides a large number of
features that the Context API doesn't provide. Also, React Redux uses context internally but it doesn't expose this fact in
the public API.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 56/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Reducers always return the accumulation of the state (based on all previous and current actions). Therefore, they act as a
reducer of state. Each time a Redux reducer is called, the state and action are passed as parameters. This state is then
reduced (or accumulated) based on the action, and then the next state is returned. You could reduce a collection of
actions and an initial state (of the store) on which to perform these actions to get the resulting final state.
⬆ Back to Top
You can use redux-thunk middleware which allows you to define async actions.
Let's take an example of fetching specific account as an AJAX call using fetch API:
function setAccount(data) {
return { type: 'SET_Account', data: data }
}
⬆ Back to Top
Keep your data in the Redux store, and the UI related state internally in the component.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 57/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
)(Link)
Due to it having quite a few performance optimizations and generally being less likely to cause bugs, the Redux
developers almost always recommend using connect() over accessing the store directly (using context API).
class MyComponent {
someMethod() {
doSomethingWith(this.context.store)
}
}
⬆ Back to Top
170. What is the difference between component and container in React Redux?
Component is a class or function component that describes the presentational part of your application.
Container is an informal term for a component that is connected to a Redux store. Containers subscribe to Redux state
updates and dispatch actions, and they usually don't render DOM elements; they delegate rendering to presentational
child components.
⬆ Back to Top
ii. In reducers:
https://github.com/sudheerj/reactjs-interview-questions 58/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
return [
...state,
{
text: action.text,
completed: false
}
];
default:
return state
}
}
⬆ Back to Top
⬆ Back to Top
If the ownProps parameter is specified, React Redux will pass the props that were passed to the component into your
connect functions. So, if you use a connected component:
The ownProps inside your mapStateToProps() and mapDispatchToProps() functions will be an object:
{ user: 'john' }
You can use this object to decide what to return from those functions.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 59/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
iv. Reducers: Used for all reducers, where files name correspond to state key.
v. Store: Used for store initialization.
This structure works well for small and medium size apps.
⬆ Back to Top
redux-saga is a library that aims to make side effects (asynchronous things like data fetching and impure things like
accessing the browser cache) in React/Redux applications easier and better.
It is available in NPM:
⬆ Back to Top
Saga is like a separate thread in your application, that's solely responsible for side effects. redux-saga is a redux
middleware, which means this thread can be started, paused and cancelled from the main application with normal Redux
actions, it has access to the full Redux application state and it can dispatch Redux actions as well.
⬆ Back to Top
177. What are the differences between call() and put() in redux-saga?
Both call() and put() are effect creator functions. call() function is used to create effect description, which
instructs middleware to call the promise. put() function creates an effect, which instructs middleware to dispatch an
action to the store.
Let's take example of how these effects work for fetching particular user data.
function* fetchUserSaga(action) {
// `call` function accepts rest arguments, which will be passed to `api.fetchUser` function.
// Instructing middleware to call promise, it resolved value will be assigned to `userData` variable
const userData = yield call(api.fetchUser, action.userId)
⬆ Back to Top
Redux Thunk middleware allows you to write action creators that return a function instead of an action. The thunk can be
used to delay the dispatch of an action, or to dispatch only if a certain condition is met. The inner function receives the
store methods dispatch() and getState() as parameters.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 60/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Both Redux Thunk and Redux Saga take care of dealing with side effects. In most of the scenarios, Thunk uses Promises
to deal with them, whereas Saga uses Generators. Thunk is simple to use and Promises are familiar to many developers,
Sagas/Generators are more powerful but you will need to learn them. But both middleware can coexist, so you can start
with Thunks and introduce Sagas when/if you need them.
⬆ Back to Top
Redux DevTools is a live-editing time travel environment for Redux with hot reloading, action replay, and customizable
UI. If you don't want to bother with installing Redux DevTools and integrating it into your project, consider using Redux
DevTools Extension for Chrome and Firefox.
⬆ Back to Top
⬆ Back to Top
Selectors are functions that take Redux state as an argument and return some data to pass to the component.
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
For example, you can add redux-thunk and logger passing them as arguments to applyMiddleware() :
https://github.com/sudheerj/reactjs-interview-questions 61/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
const initialState = {
todos: [{ id: 123, name: 'example', completed: false }]
}
⬆ Back to Top
React Native
⬆ Back to Top
React is a JavaScript library, supporting both front end web and being run on the server, for building user interfaces and
web applications.
React Native is a mobile framework that compiles to native app components, allowing you to build native mobile
applications (iOS, Android, and Windows) in JavaScript that allows you to use React to build your components, and
implements React under the hood.
⬆ Back to Top
⬆ Back to Top
You can use console.log , console.warn , etc. As of React Native v0.29 you can simply run the following to see logs in
the console:
https://github.com/sudheerj/reactjs-interview-questions 62/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
$ react-native log-ios
$ react-native log-android
⬆ Back to Top
Reselect keeps a copy of the last inputs/outputs of the last call, and recomputes the result only if one of the inputs
changes. If the the same inputs are provided twice in a row, Reselect returns the cached output. It's memoization and
cache are fully customizable.
⬆ Back to Top
⬆ Back to Top
Flow is a static analysis tool (static checker) which uses a superset of the language, allowing you to add type annotations
to all of your code and catch an entire class of bugs at compile time. PropTypes is a basic type checker (runtime checker)
which has been patched onto React. It can't check anything other than the types of the props being passed to a given
component. If you want more flexible typechecking for your entire project Flow/TypeScript are appropriate choices.
⬆ Back to Top
i. Install font-awesome :
https://github.com/sudheerj/reactjs-interview-questions 63/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
import 'font-awesome/css/font-awesome.min.css'
render() {
return <div><i className={'fa fa-spinner'} /></div>
}
⬆ Back to Top
i. Chrome extension
ii. Firefox extension
iii. Standalone app (Safari, React Native, etc)
⬆ Back to Top
If you opened a local HTML file in your browser ( file://... ) then you must first open Chrome Extensions and check
Allow access to file URLs .
⬆ Back to Top
ii. Create the Polymer component HTML tag by importing it in a HTML document, e.g. import it in the index.html of
your React application:
https://github.com/sudheerj/reactjs-interview-questions 64/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
⬆ Back to Top
React Angular
React is a library and has only the View layer Angular is a framework and has complete MVC functionality
AngularJS renders only on the client side but Angular 2 and above
React handles rendering on the server side
renders on the server side
React uses JSX that looks like HTML in JS Angular follows the template approach for HTML, which makes
which can be confusing code shorter and easy to understand
In Angular, data flows both way i.e it has two-way data binding
In React, data flows only in one way and
between children and parent and hence debugging is often
hence debugging is easy
difficult
⬆ Back to Top
⬆ Back to Top
styled-components is a JavaScript library for styling React applications. It removes the mapping between styles and
components, and lets you write actual CSS augmented with JavaScript.
⬆ Back to Top
Lets create <Title> and <Wrapper> components with specific styles for each.
https://github.com/sudheerj/reactjs-interview-questions 65/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
// Create a <Title> component that renders an <h1> which is centered, red and sized at 1.5em
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`
// Create a <Wrapper> component that renders a <section> with some padding and a papayawhip background
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`
These two variables, Title and Wrapper , are now components that you can render just like any other react component.
<Wrapper>
<Title>{'Lets start first styled component!'}</Title>
</Wrapper>
⬆ Back to Top
Relay is a JavaScript framework for providing a data layer and client-server communication to web applications using the
React view layer.
⬆ Back to Top
Starting from [email protected] or higher, there is a built-in support for typescript. You can just pass --typescript
option as below
# or
But for lower versions of react scripts, just supply --scripts-version option as react-scripts-ts while you create a
new project. react-scripts-ts is a set of adjustments to take the standard create-react-app project pipeline and
bring TypeScript into the mix.
my-app/
├─ .gitignore
├─ images.d.ts
├─ node_modules/
├─ public/
├─ src/
│ └─ ...
├─ package.json
├─ tsconfig.json
├─ tsconfig.prod.json
├─ tsconfig.test.json
└─ tslint.json
Miscellaneous
https://github.com/sudheerj/reactjs-interview-questions 66/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
i. Selectors can compute derived data, allowing Redux to store the minimal possible state.
ii. Selectors are efficient. A selector is not recomputed unless one of its arguments changes.
iii. Selectors are composable. They can be used as input to other selectors.
Let's take calculations and different amounts of a shipment order with the simplified usage of Reselect:
let exampleState = {
shop: {
taxPercent: 8,
items: [
{ name: 'apple', value: 1.20 },
{ name: 'orange', value: 0.95 },
]
}
}
console.log(subtotalSelector(exampleState)) // 2.15
console.log(taxSelector(exampleState)) // 0.172
console.log(totalSelector(exampleState)) // { total: 2.322 }
⬆ Back to Top
For example an example action which represents adding a new todo item:
{
type: ADD_TODO,
text: 'Add todo item'
}
https://github.com/sudheerj/reactjs-interview-questions 67/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
209. Does the statics object work with ES6 classes in React?
No, statics only works with React.createClass() :
someComponent= React.createClass({
statics: {
someMethod: function() {
// ..
}
}
})
But you can write statics inside ES6+ classes or writing them outside class as below,
static someMethod() {
// ...
}
}
Component.propTypes = {...}
Component.someMethod = function(){....}
⬆ Back to Top
Redux can be used as a data store for any UI layer. The most common usage is with React and React Native, but there
are bindings available for Angular, Angular 2, Vue, Mithril, and more. Redux simply provides a subscription mechanism
which can be used by any other code.
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 68/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
If your initialValues prop gets updated, your form will update too.
⬆ Back to Top
213. How React PropTypes allow different types for one prop?
For example, the height property can be defined with either string or number type as below:
Component.PropTypes = {
size: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
])
}
⬆ Back to Top
⬆ Back to Top
If the ref callback is defined as an inline function, it will get called twice during updates, first with null and then again
with the DOM element. This is because a new instance of the function is created with each render, so React needs to
clear the old ref and set up the new one.
render () {
return (
<form onSubmit={this.handleSubmit}>
<input
type='text'
ref={(input) => this.input = input} /> // Access DOM input in handle submit
<button type='submit'>Submit</button>
</form>
)
}
}
https://github.com/sudheerj/reactjs-interview-questions 69/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
But our expectation is for the ref callback to get called once, when the component mounts. One quick fix is to use the
ES7 class property syntax to define the function
render () {
return (
<form onSubmit={this.handleSubmit}>
<input
type='text'
ref={this.setSearchInput} /> // Access DOM input in handle submit
<button type='submit'>Submit</button>
</form>
)
}
}
⬆ Back to Top
The concept of render hijacking is the ability to control what a component will output from another component. It
actually means that you decorate your component by wrapping it into a Higher-Order component. By wrapping you can
inject additional props or make other changes, which can cause changing logic of rendering. It does not actually enables
hijacking, but by using HOC you make your component behave in different way.
⬆ Back to Top
There are two main ways of implementing HOCs in React. 1. Props Proxy (PP) and 2. Inheritance Inversion (II). They
follow different approaches for manipulating the WrappedComponent.
Props Proxy
In this approach, the render method of the HOC returns a React Element of the type of the WrappedComponent. We
also pass through the props that the HOC receives, hence the name Props Proxy.
function ppHOC(WrappedComponent) {
return class PP extends React.Component {
render() {
return <WrappedComponent {...this.props}/>
}
}
}
Inheritance Inversion
In this approach, the returned HOC class (Enhancer) extends the WrappedComponent. It is called Inheritance Inversion
because instead of the WrappedComponent extending some Enhancer class, it is passively extended by the Enhancer. In
this way the relationship between them seems inverse.
function iiHOC(WrappedComponent) {
return class Enhancer extends WrappedComponent {
render() {
https://github.com/sudheerj/reactjs-interview-questions 70/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
return super.render()
}
}
}
⬆ Back to Top
⬆ Back to Top
219. Do I need to keep all my state into Redux? Should I ever use react internal state?
It is up to developer decision. i.e, It is developer job to determine what kinds of state make up your application, and
where each piece of state should live. Some users prefer to keep every single piece of data in Redux, to maintain a fully
serializable and controlled version of their application at all times. Others prefer to keep non-critical or UI state, such as
“is this dropdown currently open”, inside a component's internal state.
Below are the thumb rules to determine what kind of data should be put into Redux
⬆ Back to Top
⬆ Back to Top
Class components can be restricted from rendering when their input props are the same using PureComponent or
shouldComponentUpdate. Now you can do the same with function components by wrapping them in React.memo.
https://github.com/sudheerj/reactjs-interview-questions 71/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
function MyComponent() {
return (
<div>
<OtherComponent />
</div>
);
}
Note: React.lazy and Suspense is not yet available for server-side rendering. If you want to do code-splitting in a server
rendered app, we still recommend React Loadable.
⬆ Back to Top
You can compare current value of the state with an existing state value and decide whether to rerender the page or not.
If the values are same then you need to return null to stop rerendering otherwise return the latest state value. For
example, the user profile information is conditionally rendered as follows,
⬆ Back to Top
224. How do you render Array, Strings and Numbers in React 16 Version?
Arrays: Unlike older releases, you don't need to make sure render method return a single element in React16. You are
able to return multiple sibling elements without a wrapping element by returning an array. For example, let us take the
below list of developers,
You can also merge this array of items in another array component
https://github.com/sudheerj/reactjs-interview-questions 72/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
<ReactJSDevs/>
<li>Brandon</li>
</ul>
);
}
Strings and Numbers: You can also return string and number type from the render method
render() {
return 'Welcome to ReactJS questions';
}
// Number
render() {
return 2018;
}
⬆ Back to Top
React Class Components can be made much more concise using the class field declarations. You can initialize local state
without using the constructor and declare class methods by using arrow functions without the extra need to bind them.
Let's take a counter example to demonstrate class field declarations for state without using constructor and methods
without binding,
handleIncrement = () => {
this.setState(prevState => ({
value: prevState.value + 1
}));
};
handleDecrement = () => {
this.setState(prevState => ({
value: prevState.value - 1
}));
};
render() {
return (
<div>
{this.state.value}
<button onClick={this.handleIncrement}>+</button>
<button onClick={this.handleDecrement}>-</button>
</div>
)
}
}
⬆ Back to Top
Hooks is a new feature that lets you use state and other React features without writing a class. Let's see an example of
useState hook example,
function Example() {
// Declare a new state variable, which we'll call "count"
const [count, setCount] = useState(0);
https://github.com/sudheerj/reactjs-interview-questions 73/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
⬆ Back to Top
i. Call Hooks only at the top level of your react functions. i.e, You shouldn’t call Hooks inside loops, conditions, or
nested functions. This will ensure that Hooks are called in the same order each time a component renders and it
preserves the state of Hooks between multiple useState and useEffect calls.
ii. Call Hooks from React Functions only. i.e, You shouldn’t call Hooks from regular JavaScript functions.
⬆ Back to Top
React team released an ESLint plugin called eslint-plugin-react-hooks that enforces these two rules. You can add this
plugin to your project using the below command,
⬆ Back to Top
Flux Redux
The Store contains both state and change logic The Store and change logic are separate
There are multiple stores exist There is only one store exist
All the stores are disconnected and flat Single store with hierarchical reducers
https://github.com/sudheerj/reactjs-interview-questions 74/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Flux Redux
React components subscribe to the store Container components uses connect function
⬆ Back to Top
⬆ Back to Top
componentDidCatch(error, info)
⬆ Back to Top
⬆ Back to Top
233. Why do not you need error boundaries for event handlers?
Error boundaries do not catch errors inside event handlers. Event handlers don't happened or invoked during rendering
time unlike render method or lifecycle methods. So React knows how to recover these kind of errors in event handlers. If
still you need to catch an error inside event handler, use the regular JavaScript try / catch statement as below
handleClick = () => {
try {
// Do something that could throw
} catch (error) {
this.setState({ error });
}
https://github.com/sudheerj/reactjs-interview-questions 75/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
}
render() {
if (this.state.error) {
return <h1>Caught an error.</h1>
}
return <div onClick={this.handleClick}>Click Me</div>
}
}
The above code is catching the error using vanilla javascript try/catch block instead of error boundaries.
⬆ Back to Top
234. What is the difference between try catch block and error boundaries?
Try catch block works with imperative code whereas error boundaries are meant for declarative code to render on the
screen. For example, the try catch block used for below imperative code
try {
showButton();
} catch (error) {
// ...
}
<ErrorBoundary>
<MyComponent />
</ErrorBoundary>
So if an error occurs in a componentDidUpdate method caused by a setState somewhere deep in the tree, it will still
correctly propagate to the closest error boundary.
⬆ Back to Top
⬆ Back to Top
The granularity of error boundaries usage is up to the developer based on project needs. You can follow either of these
approaches,
i. You can wrap top-level route components to display a generic error message for the entire application.
ii. You can also wrap individual components in an error boundary to protect them from crashing the rest of the
application.
⬆ Back to Top
237. What is the benefit of component stack trace from error boundary?
Apart from error messages and javascript stack, React16 will display the component stack trace with file names and line
numbers using error boundary concept. For example, BuggyCounter component displays the component stack trace as
below,
https://github.com/sudheerj/reactjs-interview-questions 76/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
constructor(props) {
super(props);
// Don't call this.setState() here!
this.state = { counter: 0 };
this.handleClick = this.handleClick.bind(this);
}
⬆ Back to Top
No, it is not mandatory. i.e, If you don’t initialize state and you don’t bind methods, you don’t need to implement a
constructor for your React component.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 77/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
MyButton.defaultProps = {
color: 'red'
};
If props.color is not provided then it will set the default value to 'red'. i.e, Whenever you try to access the color prop it
uses default value
render() {
return <MyButton /> ; // props.color will be set to red
}
⬆ Back to Top
You should not call setState() in componentWillUnmount() because Once a component instance is unmounted, it will
never be mounted again.
⬆ Back to Top
This lifecycle method is invoked after an error has been thrown by a descendant component. It receives the error that
was thrown as a parameter and should return a value to update state. The signature of the lifecycle method is as follows,
static getDerivedStateFromError(error)
Let us take error boundary use case with the above lifecycle method for demonistration purpose,
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 <h1>Something went wrong.</h1>;
}
return this.props.children;
}
}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 78/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
iv. getSnapshotBeforeUpdate()
v. componentDidUpdate()
⬆ Back to Top
⬆ Back to Top
function withSubscription(WrappedComponent) {
class WithSubscription extends React.Component {/* ... */}
WithSubscription.displayName = `WithSubscription(${getDisplayName(WrappedComponent)})`;
return WithSubscription;
}
function getDisplayName(WrappedComponent) {
return WrappedComponent.displayName || WrappedComponent.name || 'Component';
}
⬆ Back to Top
React supports all popular browsers, including Internet Explorer 9 and above, although some polyfills are required for
older browsers such as IE 9 and IE 10. If you use es5-shim and es5-sham polyfill then it even support old browsers that
doesn't support ES5 methods.
⬆ Back to Top
ReactDOM.unmountComponentAtNode(container)
⬆ Back to Top
Code-Splitting is a feature supported by bundlers like Webpack and Browserify which can create multiple bundles that
can be dynamically loaded at runtime. The react project supports code splitting via dynamic import() feature. For
example, in the below code snippets, it will make moduleA.js and all its unique dependencies as a separate chunk that
only loads after the user clicks the 'Load' button. moduleA.js
https://github.com/sudheerj/reactjs-interview-questions 79/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
export { moduleA };
App.js
render() {
return (
<div>
<button onClick={this.handleClick}>Load</button>
</div>
);
}
}
⬆ Back to Top
⬆ Back to Top
The Fragments declared with the explicit <React.Fragment> syntax may have keys. The general usecase is mapping a
collection to an array of fragments as below,
function Glossary(props) {
return (
<dl>
{props.items.map(item => (
// Without the `key`, React will fire a key warning
<React.Fragment key={item.id}>
<dt>{item.term}</dt>
<dd>{item.description}</dd>
</React.Fragment>
))}
</dl>
);
}
Note: key is the only attribute that can be passed to Fragment. In the future, there might be a support for additional
attributes, such as event handlers.
https://github.com/sudheerj/reactjs-interview-questions 80/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
As of React 16, both standard or custom DOM attributes are fully supported. Since React components often take both
custom and DOM-related props, React uses the camelCase convention just like the DOM APIs. Let us take few props
with respect to standard HTML attributes,
These props work similarly to the corresponding HTML attributes, with the exception of the special cases. It also support
all SVG attributes.
⬆ Back to Top
Higher-order components come with a few caveats apart from its benefits. Below are the few listed in an order
i. Don’t Use HOCs Inside the render Method: It is not recommended to apply a HOC to a component within the
render method of a component.
render() {
// A new version of EnhancedComponent is created on every render
// EnhancedComponent1 !== EnhancedComponent2
const EnhancedComponent = enhance(MyComponent);
// That causes the entire subtree to unmount/remount each time!
return <EnhancedComponent />;
}
The above code impact performance by remounting a component that causes the state of that component and all
of its children to be lost. Instead, apply HOCs outside the component definition so that the resulting component is
created only once
ii. Static Methods Must Be Copied Over: When you apply a HOC to a component the new component does not have
any of the static methods of the original component
You can overcome this by copying the methods onto the container before returning it
function enhance(WrappedComponent) {
class Enhance extends React.Component {/*...*/}
// Must know exactly which method(s) to copy :(
Enhance.staticMethod = WrappedComponent.staticMethod;
return Enhance;
}
iii. Refs Aren’t Passed Through: For HOCs you need to pass through all props to the wrapped component but this
does not work for refs. This is because ref is not really a prop similar to key. In this case you need to use the
React.forwardRef API
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 81/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
React.forwardRef accepts a render function as parameter and DevTools uses this function to determine what to display
for the ref forwarding component. For example, If you don't name the render function or not using displayName
property then it will appear as ”ForwardRef” in the DevTools,
But If you name the render function then it will appear as ”ForwardRef(myFunction)”
As an alternative, You can also set displayName property for forwardRef function,
function logProps(Component) {
class LogProps extends React.Component {
// ...
}
return React.forwardRef(forwardRef);
}
⬆ Back to Top
If you pass no value for a prop, it defaults to true. This behavior is available so that it matches the behavior of HTML. For
example, below expressions are equivalent,
Note: It is not recommend using this approach because it can be confused with the ES6 object shorthand (example,
{name} which is short for {name: name})
⬆ Back to Top
⬆ Back to Top
You can pass event handlers and other functions as props to child components. It can be used in child component as
below,
<button onClick={this.handleClick}>
⬆ Back to Top
Yes, You can use. It is often the easiest way to pass parameters to callback functions. But you need to optimize the
performance while using it.
Note: Using an arrow function in render method creates a new function each time the component renders, which may
have performance implications
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 83/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
function tick() {
const element = (
<div>
<h1>Hello, world!</h1>
<h2>It is {new Date().toLocaleTimeString()}.</h2>
</div>
);
ReactDOM.render(element, document.getElementById('root'));
}
setInterval(tick, 1000);
⬆ Back to Top
The above function is called “pure” because it does not attempt to change their inputs, and always return the same
result for the same inputs. Hence, React has a single rule saying "All React components must act like pure functions with
respect to their props."
⬆ Back to Top
When you call setState() in the component, React merges the object you provide into the current state. For example, let
us take a facebook user with posts and comments details as state variables,
constructor(props) {
super(props);
this.state = {
posts: [],
comments: []
};
}
Now you can update them independently with separate setState() calls as below,
componentDidMount() {
fetchPosts().then(response => {
this.setState({
posts: response.posts
});
});
fetchComments().then(response => {
this.setState({
comments: response.comments
});
});
}
https://github.com/sudheerj/reactjs-interview-questions 84/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
As mentioned in the above code snippets, this.setState({comments}) updates only comments variable without modifying
or replacing posts variable.
⬆ Back to Top
During iterations or loops, it is common to pass an extra parameter to an event handler. This can be achieved through
arrow functions or bind method. Let us take an example of user details updated in a grid,
In both the approaches, the synthetic argument e is passed as a second argument. You need to pass it explicitly for
arrow functions and it forwarded automatically for bind method.
⬆ Back to Top
You can prevent component from rendering by returning null based on specific condition. This way it can conditionally
render component.
function Greeting(props) {
if (!props.loggedIn) {
return null;
}
return (
<div className="greeting">
welcome, {props.name}
</div>
);
}
render() {
return (
<div>
//Prevent component render if it is not loggedIn
<Greeting loggedIn={this.state.loggedIn} />
<UserDetails name={this.state.name}>
</div>
);
}
In the above example, the greeting component skips its rendering section by applying condition and returning null
value.
⬆ Back to Top
267. What are the conditions to safely use the index as a key?
There are three conditions to make sure, it is safe use the index as a key.
i. The list and items are static– they are not computed and do not change
ii. The items in the list have no ids
https://github.com/sudheerj/reactjs-interview-questions 85/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
function Book(props) {
const index = (
<ul>
{props.pages.map((page) =>
<li key={page.id}>
{page.title}
</li>
)}
</ul>
);
const content = props.pages.map((page) =>
<div key={page.id}>
<h3>{page.title}</h3>
<p>{page.content}</p>
<p>{page.pageNumber}</p>
</div>
);
return (
<div>
{index}
<hr />
{content}
</div>
);
}
⬆ Back to Top
Formik is a form library for react which provides solutions such as validation, keeping track of the visited fields, and
handling form submission. In detail, You can categorize them as follows,
It is used to create a scalable, performant, form helper with a minimal API to solve annoying stuff.
⬆ Back to Top
270. What are the advantages of formik over redux form library?
Below are the main reasons to recommend formik over redux form library
i. The form state is inherently short-term and local, so tracking it in Redux (or any kind of Flux library) is unnecessary.
ii. Redux-Form calls your entire top-level Redux reducer multiple times ON EVERY SINGLE KEYSTROKE. This way it
increases input latency for large apps.
iii. Redux-Form is 22.5 kB minified gzipped whereas Formik is 12.7 kB
⬆ Back to Top
In React, it is recommend using composition instead of inheritance to reuse code between components. Both Props and
composition give you all the flexibility you need to customize a component’s look and behavior in an explicit and safe
way. Whereas, If you want to reuse non-UI functionality between components, it is suggested to extracting it into a
separate JavaScript module. Later components import it and use that function, object, or a class, without extending it.
⬆ Back to Top
Yes, you can use web components in a react application. Even though many developers won't use this combination, it
may require especially if you are using third-party UI components that are written using Web Components. For example,
let us use Vaadin date picker web component as below,
⬆ Back to Top
import("./math").then(math => {
console.log(math.add(10, 20));
});
⬆ Back to Top
If you want to do code-splitting in a server rendered app, it is recommend to use Loadable Components because
React.lazy and Suspense is not yet available for server-side rendering. Loadable lets you render a dynamic import as a
regular component. Lets take an example,
function MyComponent() {
return (
<div>
<OtherComponent />
</div>
https://github.com/sudheerj/reactjs-interview-questions 87/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
)
}
⬆ Back to Top
If the module containing the dynamic import is not yet loaded by the time parent component renders, you must show
some fallback content while you’re waiting for it to load using a loading indicator. This can be done using Suspense
component. For example, the below code uses suspense component,
function MyComponent() {
return (
<div>
<Suspense fallback={<div>Loading...</div>}>
<OtherComponent />
</Suspense>
</div>
);
}
As mentioned in the above code, Suspense is wrapped above the lazy component.
⬆ Back to Top
One of the best place to do code splitting is with routes. The entire page is going to re-render at once so users are
unlikely to interact with other elements in the page at the same time. Due to this, the user experience won't be
disturbed. Let us take an example of route based website using libraries like React Router with React.lazy,
In the above code, the code splitting will happen at each route level.
⬆ Back to Top
Context is designed to share data that can be considered global for a tree of React components. For example, in the
code below lets manually thread through a “theme” prop in order to style the Button component.
https://github.com/sudheerj/reactjs-interview-questions 88/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
class App extends React.Component {
render() {
return (
<ThemeContext.Provider value="nova">
<Toolbar />
</ThemeContext.Provider>
);
}
}
// A middle component where you don't need to pass theme prop anymore
function Toolbar(props) {
return (
<div>
<ThemedButton />
</div>
);
}
// Lets read theme value in the button component to use
class ThemedButton extends React.Component {
static contextType = ThemeContext;
render() {
return <Button theme={this.context} />;
}
}
⬆ Back to Top
The defaultValue argument is only used when a component does not have a matching Provider above it in the tree. This
can be helpful for testing components in isolation without wrapping them. Below code snippet provides default theme
value as Luna.
⬆ Back to Top
ContextType is used to consume the context object. The contextType property can be used in two ways,
i. contextType as property of class: The contextType property on a class can be assigned a Context object created by
React.createContext(). After that, you can consume the nearest current value of that Context type using this.context
in any of the lifecycle methods and render function. Lets assign contextType property on MyClass as below,
ii. Static field You can use a static class field to initialize your contextType using public class field syntax.
https://github.com/sudheerj/reactjs-interview-questions 89/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
<MyContext.Consumer>
{value => /* render something based on the context value */}
</MyContext.Consumer>
⬆ Back to Top
281. How do you solve performance corner cases while using context?
The context uses reference identity to determine when to re-render, there are some gotchas that could trigger
unintentional renders in consumers when a provider’s parent re-renders. For example, the code below will re-render all
consumers every time the Provider re-renders because a new object is always created for value.
render() {
return (
<Provider value={this.state.value}>
<Toolbar />
</Provider>
);
}
}
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 90/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Refs will not get passed through because ref is not a prop. It handled differently by React just like key. If you add a ref to
a HOC, the ref will refer to the outermost container component, not the wrapped component. In this case, you can use
Forward Ref API. For example, we can explicitly forward refs to the inner FancyButton component using the
React.forwardRef API. The below HOC logs all props,
function logProps(Component) {
class LogProps extends React.Component {
componentDidUpdate(prevProps) {
console.log('old props:', prevProps);
console.log('new props:', this.props);
}
render() {
const {forwardedRef, ...rest} = this.props;
Let's use this HOC to log all props that get passed to our “fancy button” component,
// ...
}
export default logProps(FancyButton);
Now lets create a ref and pass it to FancyButton component. In this case, you can set focus to button element.
⬆ Back to Top
⬆ Back to Top
284. Why do you need additional care for component libraries while using forward refs?
When you start using forwardRef in a component library, you should treat it as a breaking change and release a new
major version of your library. This is because your library likely has a different behavior such as what refs get assigned to,
and what types are exported. These changes can break apps and other libraries that depend on the old behavior.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 91/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
If you don’t use ES6 then you may need to use the create-react-class module instead. For default props, you need to
define getDefaultProps() as a function on the passed object. Whereas for initial state, you have to provide a separate
getInitialState method that returns the initial state.
Note: If you use createReactClass then autobinding is available for all methods. i.e, You don't need to use .bind(this) with
in constructor for event handlers.
⬆ Back to Top
Yes, JSX is not mandatory for using React. Actually it is convenient when you don’t want to set up compilation in your
build environment. Each JSX element is just syntactic sugar for calling React.createElement(component, props,
...children). For example, let us take a greeting example with JSX,
ReactDOM.render(
<Greeting message="World" />,
document.getElementById('root')
);
ReactDOM.render(
React.createElement(Greeting, {message: 'World'}, null),
document.getElementById('root')
);
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 92/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
algorithms have a complexity in the order of O(n3) where n is the number of elements in the tree. In this case, for
displaying 1000 elements would require in the order of one billion comparisons. This is far too expensive. Instead, React
implements a heuristic O(n) algorithm based on two assumptions:
i. Two elements of different types will produce different trees.
ii. The developer can hint at which child elements may be stable across different renders with a key prop.
⬆ Back to Top
iii. Component Elements Of The Same Type: When a component updates, the instance stays the same, so that state is
maintained across renders. React updates the props of the underlying component instance to match the new
element, and calls componentWillReceiveProps() and componentWillUpdate() on the underlying instance. After that,
the render() method is called and the diff algorithm recurses on the previous result and the new result.
iv. Recursing On Children: when recursing on the children of a DOM node, React just iterates over both lists of
children at the same time and generates a mutation whenever there’s a difference. For example, when adding an
element at the end of the children, converting between these two trees works well.
<ul>
<li>first</li>
<li>second</li>
</ul>
<ul>
<li>first</li>
<li>second</li>
<li>third</li>
</ul>
v. Handling keys: React supports a key attribute. When children have keys, React uses the key to match children in the
original tree with children in the subsequent tree. For example, adding a key can make the tree conversion efficient,
<ul>
<li key="2015">Duke</li>
<li key="2016">Villanova</li>
</ul>
<ul>
<li key="2014">Connecticut</li>
<li key="2015">Duke</li>
<li key="2016">Villanova</li>
</ul>
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 93/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
Actually children prop doesn’t need to be named in the list of “attributes” in JSX element. Instead, you can keep it
directly inside element,
<Mouse>
{mouse => (
<p>The mouse position is {mouse.x}, {mouse.y}</p>
)}
</Mouse>
While using this above technique(without any name), explicitly state that children should be a function in your
propTypes.
Mouse.propTypes = {
children: PropTypes.func.isRequired
};
⬆ Back to Top
291. What are the problems of using render props with pure components?
If you create a function inside a render method, it negates the purpose of pure component. Because the shallow prop
comparison will always return false for new props, and each render in this case will generate a new value for the render
prop. You can solve this issue by defining the render function as instance method.
⬆ Back to Top
function withMouse(Component) {
return class extends React.Component {
render() {
return (
<Mouse render={mouse => (
<Component {...this.props} mouse={mouse} />
)}/>
);
}
}
}
This way render props gives the flexibility of using either pattern.
https://github.com/sudheerj/reactjs-interview-questions 94/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
⬆ Back to Top
<div>
My JavaScript variable is {String(myVariable)}.
</div>
⬆ Back to Top
⬆ Back to Top
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
User Name:
<input
defaultValue="John"
type="text"
ref={this.input} />
</label>
<input type="submit" value="Submit" />
</form>
);
}
The same applies for select and textArea inputs. But you need to use defaultChecked for checkbox and radio
inputs.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 95/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
stack such as webpack, reselect, ESNext, Babel. You can clone the project https://github.com/react-boilerplate/react-
boilerplate and start working on any new react project.
⬆ Back to Top
298. What is the difference between Real DOM and Virtual DOM?
Below are the main differences between Real DOM and Virtual DOM,
You can update HTML directly. You Can’t directly update HTML
Creates a new DOM if element updates It updates the JSX if element update
⬆ Back to Top
iii. React Bootstrap Package: In this case, you can add Bootstrap to our React app is by using a package that has rebuilt
Bootstrap components to work particularly as React components. Below packages are popular in this category,
a. react-bootstrap
b. reactstrap
⬆ Back to Top
300. Can you list down top websites or applications using react as front end framework?
Below are the top 10 websites using React as their front-end framework,
i. Facebook
ii. Uber
iii. Instagram
iv. WhatsApp
v. Khan Academy
vi. Airbnb
vii. Dropbox
viii. Flipboard
ix. Netflix
x. PayPal
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 96/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
⬆ Back to Top
function App() {
const [data, setData] = useState({ hits: [] });
useEffect(async () => {
const result = await axios(
'http://hn.algolia.com/api/v1/search?query=react',
);
setData(result.data);
}, []);
return (
<ul>
{data.hits.map(item => (
<li key={item.objectID}>
<a href={item.url}>{item.title}</a>
</li>
))}
</ul>
);
}
Remember we provided an empty array as second argument to the effect hook to avoid activating it on component
updates but only for the mounting of the component. i.e, It fetches only for component mount.
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 97/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
React includes a stable implementation of React Hooks in 16.8 release for below packages
i. React DOM
ii. React DOM Server
iii. React Test Renderer
iv. React Shallow Renderer
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
310. What are typical middleware choices for handling asynchronous calls in Redux?
https://github.com/sudheerj/reactjs-interview-questions 98/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Some of the popular middleware choices for handling asynchronous calls in Redux eco system are Redux Thunk, Redux
Promise, Redux Saga .
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
⬆ Back to Top
The ReactDOMServer#renderToNodeStream method is used to generate HTML on the server and send the markup down
on the initial request for faster page loads. It also helps search engines to crawl your pages easily for SEO purposes.
Note: Remember this method is not available in the browser but only server.
⬆ Back to Top
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 99/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
It is a javascript library for managing the It is a library for reactively managing the state of
Definition
application state your applications
How it stores Uses JS Object to store Uses observable to store the data
⬆ Back to Top
// in es 5
var someData = this.props.someData
var dispatch = this.props.dispatch
// in es6
const { someData, dispatch } = this.props
// in es 5
<SomeComponent someData={this.props.someData} dispatch={this.props.dispatch} />
// in es6
<SomeComponent {...this.props} />
// es 5
var users = usersList.map(function (user) {
return <li>{user.name}</li>
})
// es 6
const users = usersList.map(user => <li>{user.name}</li>);
⬆ Back to Top
The Concurrent rendering makes React apps to be more responsive by rendering component trees without blocking the
main UI thread. It allows React to interrupt a long-running render to handle a high-priority event. i.e, When you enabled
concurrent Mode, React will keep an eye on other tasks that need to be done, and if there's something with a higher
priority it will pause what it is currently rendering and let the other task finish first. You can enable this in two ways,
https://github.com/sudheerj/reactjs-interview-questions 100/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
⬆ Back to Top
320. What is the difference between async mode and concurrent mode?
Both refers the same thing. Previously concurrent Mode being referred to as "Async Mode" by React team. The name
has been changed to highlight React’s ability to perform work on different priority levels. So it avoids the confusion from
other approaches to Async Rendering.
⬆ Back to Top
Yes, you can use javascript: URLs but it will log a warning in the console. Because URLs starting with javascript: are
dangerous by including unsanitized output in a tag like and create a security hole.
const companyProfile = {
website: "javascript: alert('Your website is hacked')",
};
// It will log a warning
<a href={companyProfile.website}>More details</a>
Remember that the future versions will throw an error for javascript URLs.
⬆ Back to Top
⬆ Back to Top
Imagine a simple UI component, such as a "Like" button. When you tap it, it turns blue if it was previously grey, and grey if it
was previously blue.
```javascript
if( user.likes() ) {
if( hasBlue() ) {
removeBlue();
addGrey();
} else {
removeGrey();
addBlue();
}
}```
https://github.com/sudheerj/reactjs-interview-questions 101/102
27/2/2020 GitHub - sudheerj/reactjs-interview-questions: List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are c…
Basically, you have to check what is currently on the screen and handle all the changes necessary to redraw it with the
current state, including undoing the changes from the previous state. You can imagine how complex this could be in a real-
world scenario.
```javascript
if( this.state.liked ) {
return <blueLike />;
} else {
return <greyLike />;
}```
Because the declarative approach separates concerns, this part of it only needs to handle how the UI should look in a
sepecific state, and is therefore much simpler to understand.
⬆ Back to Top
https://github.com/sudheerj/reactjs-interview-questions 102/102
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
If you have a few developers in a room who have been working with React for 3+ years,
there is a very small chance they will ask you questions like “the difference between
props and state”.
Instead, people want to see your knowledge about common ReactJS patterns, well-
known pitfalls, how to refactor and test your components and more.
You can work with React for years and actually have no opinion on some of the less
practical questions and it’s fine. However, if you have an interview, then it’s quite
important to have an opinion. Why? Well, first, it feels good to be able to answer
interviewer’s questions and also shows your interest in the subject.
A controlled input accepts its current value as a prop, as well as a callback to change
that value. It’s a “React way”:
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 1/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
An uncontrolled input stores its own state internally, using DOM API.
Here don’t provide value and onChange handler, but we use ref():
this.textInput.current.value
Your interviewer wants to hear more about details: are there any pros to using
uncontrolled components, is there any performance difference?
Personally, I’ve never used uncontrolled inputs, but if you are learning React or you have
to integrate React and non-React code then it might be necessary.
It’s nice to mention what your data (state) and UI (inputs) are always in sync with
controlled input approach and it means you have to update the component’s state which
triggers React reconciliation process.
While with uncontrolled elements there is no need for that — you just keep the value
inside the input DOM element.
There are classic diffing algorithms with O(n³) time complexity, which might be used for
creating a tree of React elements. But it means for displaying 1000 elements would
require one billion comparisons.
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 2/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
Instead, React implements a heuristic O(n) algorithm with an assumption that the
developer can hint at which child elements may be stable across different renders with a
key prop.
What about a bad key? Well, an index might be a very bad key if you decide to make your
children removable. Check out this demo. Try to type something in the second input and
then remove the first one. But you still can see the value in the second one, why so?
Because your keys are unstable. After removal, your third child with a key equals to 3,
now has a key equals to 2. It’s not the same element for React now. And it will match it to
the wrong DOM element, which previously had a key equals to 2 (which keeps the value
we typed in a second input).
In short, with bubbling, the event is first captured and handled by the innermost
element and then propagated to outer elements.
With capturing, the event is first captured by the outermost element and propagated to
the inner elements.
After that would be great to mention that React uses the Event Delegation Pattern —
instead of assigning a handler to each of them — we put a single handler on their
common ancestor and can access that element with event.target .
And then it’s quite obvious to explain how stopImmediatePropagation is different from
the tradition stopPropagation method: it prevents other listeners of the same event from
being called which a case for React because of the event delegation pattern.
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 3/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
3. React.memo — The same as the previous one but it works with functional
components.
You use PureComponents in 99% of cases in modern React. However, if you are working
with Redux selectors, often you will need to explicitly specify the incoming prop changes
to cancel the impending re-render to prevent UI thrashing. In this case, it’s appropriate
to use a Component.
Check out this deep reading if it’s all vague for you.
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 4/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
We want to create a HOC for making a red border for our Button component. Let’s create
it using our definition:
An example:
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 5/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
A follow up: what about HOC vs render props. Which one is better, when to use? This is
a quite controversial topic, in this article you can find some pros and cons.
React testing library provides a clean and simple API which focuses on testing
applications “as a user would”. This means an API returns HTML Elements rather than
React Components with shallow rendering in Enzyme. It’s is a nice tool for writing
integrational tests.
Enzyme is still a valid tool, it provides a more sophisticated API which gives you access
to component’s props and internal state. It makes sense to create unit tests for
components.
useEffect(() => {
const handleResize = () => setSize(getSize());
window.addEventListener('resize', handleResize);
return () => window.removeEventListener('resize', handleResize);
}, []);
return size;
}
Usage:
return (
<div>
{size.width}px / {size.height}px
</div>
);
}
1. Is that necessary to call your function useWindowSize , what about just getWindowSize?
Yes, without it, we wouldn’t be able to automatically check for violations of rules of
Hooks because we couldn’t tell if a certain function contains calls to Hooks inside of it.
Yes, but we’ll call useEffect hook on every render which may cause performance issues.
3. How React knows when to re-render App component if we handle window resizing in
useWindowSize ?
When you call setSize inside the custom hooks, React knows that this hook is used in
App component and will re-render it.
There is some portion of magic with React hooks. Check out Why Do React Hooks Rely
on Call Order? article for more info.
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 7/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
useEffect(() => {
const handleResize = () => setSize(getSize());
window.addEventListener('resize', handleResize);
return () => window.removeEventListener('resize', handleResize);
}, []);
return size;
}
Also, with Context API it’s quite easy to re-render much more than you need even if you
use PureComponent or React.memo.
In the example below every time, we click on the button you will see a new message in
the console:
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 8/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
setName(name) {
this.setState({ name });
}
render() {
const { name } = this.state;
const { setName } = this;
return (
<ProfileContext.Provider
value={{
name,
setName
}}
>
<Logger />
</ProfileContext.Provider>
);
}
}
In the example above our Logger component is a pure component, but we still re-
render it every time. The reason for that is because we use the context here. Try to
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 9/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
comment out the first line in the Logger component, now it won’t re-render.
This is because the context uses a reference identity to determine when to re-render.
Let’s change our Profile component to make it work:
render() {
return (
<ProfileContext.Provider value={this.state}>
<Logger />
</ProfileContext.Provider>
);
}
}
Now it works as expected. Btw, if you know how to make it work with hooks — post it in
the comment section!
Let’s take a look at the example below and refactor it using hooks:
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 10/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
componentDidUpdate() {
localStorage.setItem("info", this.state.value);
}
render() {
const { value } = this.state;
return (
<div>
<input value={value} type="text" onChange={this.onChange} />
<p>{value}</p>
</div>
);
}
}
This is already quite compact, thanks to class fields declaration and class arrow
functions.
The first iteration of refactoring replacing setState and componentDidUpdate might look
like this:
return (
<div>
<input value={value} type="text" onChange={onChange} />
<p>{value}</p>
</div>
);
};
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 11/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
Only 13 lines of code instead of 19 with classes with exactly the same functionality. But
we can go one step further: we can easily extract and reuse a custom hook here:
return (
<div>
<input value={value} type="text" onChange={onChange} />
<p>{value}</p>
</div>
);
};
Only 10 lines of code — twice shorter than before. And in the real app, you have much
more to extract.
For example, people won’t ask you to whiteboard a unit-test for your react component,
but a lack of explanation about different react components testing approaches cause
more questions.
Also, feels like more and more interviews focused on hooks. Use this website to practice
it.
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 12/13
27/2/2020 ReactJS Interview Questions for Senior Developers - ITNEXT
That’s it!
If you have any questions or feedback, let me know in the comments down below.
If this was useful, please click the clap 👏 button down below a few
times to show your support! ⬇⬇
https://itnext.io/reactjs-interview-questions-for-senior-developers-64618f6a0aca 13/13
27/2/2020 ReactJS Interview Questions
https://tekslate.com/reactjs-interview-questions 1/7
27/2/2020 ReactJS Interview Questions
etc. It returns to the single react element which is the presentation of native DOM Component. This function must be kept pure i.e., it must return the
same result each time it is invoked.
https://tekslate.com/reactjs-interview-questions 2/7
27/2/2020 ReactJS Interview Questions
//General way
render() {
return(
);
}
//With Arrow Function
render() {
return(
this.handleOnChange(e) } />
);
}
https://tekslate.com/reactjs-interview-questions 3/7
27/2/2020 ReactJS Interview Questions
componentWillUnmount() – Called after the component is unmounted from the DOM. It is used to clear up the memory spaces.
Q22: List some of the cases when you should use Refs.
Following are the cases when refs should be used: When you need to manage focus, select text or media playback To trigger imperative
animations Integrate with third-party DOM libraries Q: What do you know about controlled and uncontrolled components? Controlled vs
Uncontrolled Components
Props manipulation
Because of circular dependencies, complicated model was created around models and views
https://tekslate.com/reactjs-interview-questions 4/7
27/2/2020 ReactJS Interview Questions
function addTodo(text) {
return {
type: ADD_TODO,
text
}
}
Flux Redux
The Store contains state and change logic Store and change logic are separate
There are multiple stores There is only one store
All the stores are disconnected and at Single store with hierarchical reducers
Has singleton dispatcher No concept of dispatcher
React components subscribe to the store Container components utilize connect
https://tekslate.com/reactjs-interview-questions 5/7
27/2/2020 ReactJS Interview Questions
1
2
3
4
5
https://tekslate.com/reactjs-interview-questions 6/7
27/2/2020 ReactJS Interview Questions
Reusable Components
Clean Abstraction
React Native
https://tekslate.com/reactjs-interview-questions 7/7
https://career.guru99.com/
1) What is Reactjs?
React is a JavaScript library that makes building user interfaces easy. It was developed by
Facebook.
Integrating React with the MVC framework like Rails requires complex configuration.
React require the users to have knowledge about the integration of user interface into
MVC framework.
1 / 11
https://career.guru99.com/
Facebook widely uses flux architecture concept for developing client-side web applications. It
is not a framework or a library. It is simply a new kind of architecture that complements React
and the concept of Unidirectional Data Flow.
Redux is a library used for front end development. It is a state container for JavaScript
applications which should be used for the applications state management. You can test and run
an application developed with Redux in different environments.
Redux has a feature called 'Store' which allows you to save the application's entire State at one
place. Therefore all it's component's State are stored in the Store so that you will get regular
updates directly from the Store. The single state tree helps you to keep track of changes over
time and debug or inspect the application.
It is a function which returns an action object. The action-type and the action data are always
stored in the action object. Actions can send data between the Store and the software
application. All information retrieved by the Store is produced by the actions.
2 / 11
https://career.guru99.com/
Stateless components are pure functions that render DOM-based solely on the properties
provided to them.
React Router is a routing library which allows you to add new screen flows to your application,
and it also keeps URL in sync with what’s being shown on the page.
React Motion
React Transition Group
Jest is a JavaScript unit testing framework created by Facebook based on Jasmine. It offers
automated mock creation and a jsdom environment. It is also used as a testing component.
A dispatcher is a central hub of app where you will receive actions and broadcast payload to
registered callbacks.
A callback function should be called when setState has finished, and the component is re-
rendered.
A higher-order component also shortly known as HOC is an advanced technique for reusing
component logic. It is not a part of the React API, but they are a pattern which emerges from
React’s compositional nature.
3 / 11
https://career.guru99.com/
A presentational part is a segment which allows you to renders HTML. The segment’s capacity
is presentational in markup.
Props mean properties, which is a way of passing data from parent to child. We can say that
props are just a communication channel between components. It is always moving from parent
to child component.
The super keyword helps you to access and call functions on an object’s parent.
The yield catchphrase is utilized to delay and resume a generator work, which is known as yield
catchphrase.
Function component
Class component
Synthetic event is a kind of object which acts as a cross-browser wrapper around the browser’s
native event. It also helps us to combine the behaviors of various browser into signal API.
It is an object which decides how a specific component renders and how it behaves. The state
stores the information which can be changed over the lifetime of a React component.
The arrow function helps you to predict the behavior of bugs when passed as a callback.
Therefore, it prevents bug caused by this all together.
4 / 11
https://career.guru99.com/
Initialization
State/Property updates
Destruction are the lifecycle of React
The main difference the two is that the State is mutable and Pros are immutable.
Pure components are the fastest components which can replace any component with only a
render(). It helps you to enhance the simplicity of the code and performance of the application.
There are mainly two sorts of information that control a segment: State and Props
'create-react-app' is a command-line tool which allows you to create one basic react application.
Keys allow you to provide each list element with a stable identity. The keys should be unique.
Children props are used to pass component to other components as properties. You can access
it by using
[crayon-5d24b7db7781c245281054/]
34) Explain error boundaries?
Error boundaries help you to catch Javascript error anywhere in the child components. They are
most used to log the error and show a fallback UI.
5 / 11
https://career.guru99.com/
StrictMode allows you to run checks and warnings for react components. It runs only on
development build. It helps you to highlight the issues without rendering any visible UI.
Portal allows you to render children into a DOM node. CreatePortalmethod is used for it.
React context helps you to pass data using the tree of react components. It helps you to share
data globally between various react components.
Webpack in basically is a module builder. It is mainly runs during the development process.
Babel, is a JavaScript compiler that converts latest JavaScript like ES6, ES7 into plain old ES5
JavaScript that most browsers understand.
If you want the browser to read JSX, then that JSX file should be replaced using a JSX
transformer like Babel and then send back to the browser.
42) What are the major issues of using MVC architecture in React?
Here are the major challenges you will face while handling MVC architecture:
43) What can be done when there is more than one line of expression?
At that time a multi-line JSX expression is the only option left for you.
It is actually a cross-browser wrapper around the browser’s native event. These events have
6 / 11
https://career.guru99.com/
46) When should you use the top-class elements for the function element?
If your element does a stage or lifetime cycle, we should use top-class elements.
When a component's state or props change then rest will compare the rendered element with
previously rendered DOM and will update the actual DOM if it is needed. This process is known
as reconciliation.
You can’t update props in react js because props are read-only. Moreover, you can not modify
props received from parent to child.
Restructuring is extraction process of array objects. Once the process is completed, you can
separate each object in a separate variable.
'Prop-types' library allows you to perform runtime type checking for props and similar object in a
recent application.
7 / 11
https://career.guru99.com/
React hooks allows you to use State, and other React features without writing a class.
You can use fragment keyword to group a list of children components without using any extra
nodes to the DOM.
For example :
[crayon-5d24b7db77823082014955/]
57) What is the main difference between createElement and cloneElment?
render()
hydrate()
createPortal()
unmountComponentAtNode()
findDOMNode()
If you want to create one component by extending 'React. Component’, the constructor helps
you to initialize the State. But, if you want to create by using 'Reat.createClass.’ then you
should use ‘genInitiaState.'
Ref are an attribute of the DOM elements. The primary purpose of the refs is to find the DOM
elements easily.
8 / 11
https://career.guru99.com/
This function is called after the DOM element removes from DOM, and it will swipe the memory,
which helps you to increase the access space.
We can dispatch the data to another component which should be based on the action which
stores the parent component.
66) How will be you able to handle more action using redux?
In order to create the same component in more action flow, we are using the same functionality
in various modules.
We can spill the rescues based on the event actions. That action should be split in separate
modules.
number
string
array
object
element
BindActionCreator helps you to bind the event based on the action dispatcher to the HTML
element.
Ref is a reference to the element. It should be avoided in most cases. However, sometimes it is
used when you need to access DOM or instance of the component directly.
Yes, you can use attach JSX element with other JSX components which is very much similar to
nesting HTML elements.
9 / 11
https://career.guru99.com/
React js is a front end open-source JavaScript library used for building UIs.
Rect Native, is an open-source, mobile framework which allows developers to user React on
platforms like Android and iOS.
10 / 11
https://career.guru99.com/
11 / 11
Powered by TCPDF (www.tcpdf.org)
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Share:
If you're looking for React JS Interview Questions and Answers? If YES, then this blog is
for you!
There are a lot of opportunities from many reputed companies in the world. According to
research, React JS has a market share of about 7.3%.
#Interested to learn more about React framework - Then check out our Best React
Course to gain expertise to build React JS Applications.
Mindmajix designed this blog with the latest 2020 updated ReactJS Interview Questions
and Answers for freshers and experienced professionals. These React interview
questions will help you to crack the React interview easily. Let's get into them.
What is React?
Ans. React is a front-end JavaScript library that mainly follows the component-based
approach for building a user interface (UI) components for a single page application. It is
also used for handling the view layer in both mobile and web apps. Moreover, react plays
a crucial role in developing interactive mobile and web UIs. It was created and developed
by Jordan Walke; it was deployed first on the Facebook newsfeed in 2011.
Ans: The following reasons make one to use React for building User Interfaces (UI), and
they are:
Simplicity
High scalability
Increase performance
Ans. Below is the sequence of steps which gives an idea about how does react work
Firstly the react runs the diffing algorithm to identify the changes that are made in the
virtual DOM.
Next step is reconciliation, this is used to update the DOM as per the new features.
Now, the virtual DOM, which is lightweight in nature and is detached from the specific
implementation of the browser.
https://mindmajix.com/reactjs-interview-questions 2/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Followingly the ReactElements which are present in virtual DOM are used to build basic
nodes.
Finally, if the ReactComponent changes the state; the diffing algorithm runs faster and
identify the changes. After identification, it automatically updates the DOM with the
change difference.
React boost the performance of the SEO to higher levels as a search engine faces
the problem while reading JavaScript of high loaded applications.
It provides a transition process as an ideal solution for both mobile and web
applications for building rich user interfaces.
Using React along with JSX will make you write components and code efficiently
and clearly.
As the React boost the efficiency of components by reusing them. This is the
reason why it is considered as an ideal feature of React. It is considered as the
most reusable system component.
https://mindmajix.com/reactjs-interview-questions 3/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Writing integration and unit tests can be made smother by using tools
Ans: The following table shows the major difference between AngularJS and React
https://mindmajix.com/reactjs-interview-questions 4/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Ans. Basically, ReactJS is a limited library that builds UI parts, it is essentially not quite
the same as a considerable measure of other JavaScript structures. One common
example is AngularJS approaches building an app simply by expanding HTML markup
and infusing different develop such as controller at runtime. Therefore, AngularJS is
exceptionally obstinate about the more noteworthy engineering of your application.
Ans: It is basically a novel dialect of the popular JavaScript that simply integrates the
HTML templates into the code of JavaScript. The browser is not capable to read the code
simply and thus there is a need for this integration. Generally, WebPack or Babel tools
are considered for this task. It has become a very popular approach in the present
scenario among the developers.
Ans.
1. Initialization
2. State/Property Updates
3. Destruction
The first difference between both of them is their code dependency. ReactJS depends
less on the code whereas AngularJS needs a lot of coding to be done. The packaging on
React is quite strong as compared to the AngularJS. Another difference is React is
equipped with Virtual Dom while the Angular has a Regular DOM. ReactJS is all about
the components whereas AngularJS focus mainly on the Models, View as well as on
https://mindmajix.com/reactjs-interview-questions 5/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Controllers. AngularJS was developed by Google while the ReactJS is the outcome of
facebook. These are some of the common differences between the two.
Ans: It is one of the most in-demand libraries for front-end development in today’s
growing world. It is defined as the predictable state container mainly designed for
JavaScript apps and also it is used for managing the entire state of an application. Redux
is very small in size and has no dependencies. It builds applications that are easy to
deploy in different environments and easy to test. Redux is very small in size and has no
dependencies.
Ans: Redux thunk acts as middleware which allows an individual to write action creators
that return functions instead of actions. This is also used as a delay function in order to
delay dispatch of an action if a certain condition is met. The two store methods getState()
and dispatch() are provided as parameters to the inner function.
YouTube
In order to activate Redux thunk, we must first use applyMiddleware() method as shown
below:
Ans. Basically, Flux is a basic illustration that is helpful in maintaining the unidirectional
data stream. It is meant to control construed data unique fragments to make them
interface with that data without creating issues. Flux configuration is insipid; it's not
specific to React applications, nor is it required to collect a React application. Flux is
basically a straightforward idea, however in you have to exhibit a profound
comprehension of its usage.
Ans. https://github.com/facebook/react
Ans. Component lifecycle is an essential part of this platform. Basically, they have
lifecycle events that fall in the three prime categories which are property updates,
Initialization and third are Destruction. They are generally considered as a method of
simply managing the state and properties of every reach component.
Ans. Yes, there are a few drawbacks which are associated with this platform. The leading
drawback of the ReactJS is the size of its library. It is very complex and creates a lot of
confusion among the developers. Also, there are lots of developers all over the world
which really don’t like the JSX and inline templating. In addition to this, there is another
major limitation of ReactJS and i.e. only cover one layer of the app and i.e.View. Thus to
manage the development, developers have to depend on several other technologies
which consume time.
Ans. This task is generally performed with the help of functions. Actually, there are
several functions which are provided to both parent and child components. They simply
make use of them through props. Their communication should be accurate and reliable.
The need of same can be there anytime and therefore functions are considered for this
https://mindmajix.com/reactjs-interview-questions 7/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
task. They always make sure that information can be exchanged easily and in an efficient
manner among the parent and child components.
Ans. In React, State is an object that represents how the component renders and
behaves. States are the sources of data and allow you to create dynamic and interactive
components. They are accessed using this.state(). For changing a value in the state
object, call it using this.setState() method.
Ans.
Life cycle hooks Lifecycle hooks are created We cannot use lifecycle
from the React Component. hooks in a functional
This class component component.
makes lifecycle hooks
available in it.
Readability They are very difficult to test They are much easier to
and read test and read
Ans. Props stand for properties in React and used for passing the information from one
component to another. But the data with the Props are passed in a unidirectional flow,
i.e., one way from parent to child. Further, they are read-only data, which means child
components cannot change data coming from the parent.
State Props
The state is completely managed within a Props are directly passed to its parents with
component for internal communication. child component.
State can be modified using setState() A particular component should never modify
method. its own props.
Ans. In ReactJS high order component can be defined as the function that is mainly used
to collect the component and returns a new component. These components are the
patterns that are extracted from the React’s compositional nature. One important aspect
of this component is that it is used as a reusable component logic in the React. It
provides us with the best way to share behaviour between different React components.
https://mindmajix.com/reactjs-interview-questions 9/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
1 import React from 'react';
2 class App extends React.Component{
3 render(){
4 return(
5 <div>
6 <Header/>
7 <Content/>
8 </div>
9 );
10 }
11 }
12 class Header extends React.Component{
13 render(){
14 return(
15 <div>
16 <h1> Header</h1>
17 </div>
18
19 )
20 }
21 }
22 class Content extends React.Component{
23 render(){
24 return(
25 <h2>Content</h2>
26 <p>The Content Text!!!</p>
27 </div>
28 )
29 }
30 }
31 export default App;
Ans. React implements Synthetic events to improve the consistency and performance of
applications and interfaces. The synthetic event is a cross-browser wrapper around the
browser’s native event. It combines the behaviour of multiple browsers into a single API
to make sure events have the same properties across different browsers and platforms.
Pros are immutable while the state is mutable. Both of them can update themselves
easily.
https://mindmajix.com/reactjs-interview-questions 10/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
The server needs to be monitored to for updates with respect to time. The primary aim in
most of the cases is to check whether novel comments are there or not. This process is
basically considered as pooling. It checks for updates approximately every 5 seconds. It
is possible to change this time period easily. Pooling help keeping an eye on the users
and always make sure that no negative information is present on the servers. Actually, it
can create issues related to several things and thus pooling is considered.
If your component has state or a lifecycle method(s), use a Class component. or else,
use a Functional component.
For all the available DOM objects in ReactJS, there is a parallel virtual DOM object. It is
nothing but can be considered as the lighter version of the true copy and is powerful in
eliminating the complex code. It is also used as a Blue Print for performing several basic
experiments. Many developers also use it while practicing this technology.
Explore Curriculum
MVC approaches are presently considered as outdated. Although they are capable to
handle data concerns, controllers as well as UI, many developers found that it doesn’t
properly work when applications size increases. However, they are capable to handle
some of the key issues such as eliminating the lack of data integrity as well as managing
the data flow which is not properly defined. On the other side, Flux works perfectly with all
the sizes irrespective of their size.
https://mindmajix.com/reactjs-interview-questions 11/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Basically, a React component describes what you need to see on the screen. Not all that
basically, a React element is a protest portrayal of some UI.
ReactJS is a technology that can be trusted for complex tasks. While performing any task
through it, developers need not worry about the bugs. It always ensures error-free
outcomes and the best part is it offers scalable apps. It is a very fast technology and can
simply be trusted for quality outcomes.
Fiber, the following usage of React's reconciliation algorithm, will be able to begin and
quit rendering as required for execution benefits. One of the exchange offs of this is
componentWillMount, the other lifecycle event where it may bode well to influence an
AJAX to ask for, will be "non-deterministic". This means React may begin calling
componentWillMount at different circumstances at whenever point it senses that it
needs to. This would clearly be a bad formula for AJAX requests.
You can't ensure the AJAX request won't resolve before the component mounts. In the
event that it did, that would imply that you'd be attempting to setState on an unmounted
component, which won't work, as well as React will holler at you for. Doing AJAX in
componentDidMount will ensure that there's a component to update.
createElement is the thing that JSX gets transpiled to and is the thing that React uses to
make React Elements (protest representations of some UI). cloneElement is utilized as a
part of request to clone a component and pass it new props. They nailed the naming on
these two.
https://mindmajix.com/reactjs-interview-questions 12/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
To capture the user’s information and other similar data, the event handling system is
considered. It is generally done through DOM elements which are present in the code.
This task is simple to accomplish. Two-way communication is considered in this
approach.
A callback work which will be conjured when setState has completed and the part is re-
rendered.
Something that is not talked about a great deal is that setState is asynchronous, which is
the reason it takes in a moment callback function. Ordinarily, it's best to utilize another
lifecycle strategy instead of depending on this callback function, however, it's great to
know it exists.
Output:
Learn
Welcome
It must have one JSX element present so that the task can be accomplished easily.
Having more than one expression is not an issue but probably it will slow down the
process. There are also chances of confusion with more than one expression if you are
new to this technology.
There are components in the ReactJS that maintain their own internal state. They are
basically considered as uncontrolled components. On the other side, the components
which don’t maintain any internal state are considered as controlled components in
https://mindmajix.com/reactjs-interview-questions 13/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Applications that are built on Flux have components that can simply be tested. By simply
updating the store, developers are able to manage and test any react component. It cut
down the overall risk of data affection. All the applications are highly scalable and suffer
no compatibility issues.
1 this.setState{(prevState, props)=>
2 {
3 return {
4 streak: prevState.streak+props.count
5 }
6 })
Nothing isn't right with it. It's once in a while utilized and not outstanding, but rather you
can likewise pass a function to setState that gets the past state and props and returns
another state, similarly as we're doing above. Furthermore, is nothing amiss with it, as
well as effectively recommended in case you're setting state in light of the previous state.
Actually, JSX is not considered as a proper JavaScript. Browsers cannot read them
simply. There is always a need to compile the files that contain JavaScript Code. This is
usually done with the help of JSX compiler which performs its task prior to file entering
the browser. Also, compiling is not possible in every case. It depends on a lot of factors
such as the source or nature of file or data.
Traditional React Components as we have seen so far are making a class with class
Example extends React.Component or React.createClass(). These make stateful
components on the off chance that we at any point set the state (i.e. this.setState(),
getInitialState(), or this.state = {} inside a constructor()).
In the event that we have no expectation for a Component to require state, or to require
lifecycle methods, we can really compose Components with a pure function,
consequently the expression "pure function Component":
https://mindmajix.com/reactjs-interview-questions 14/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
1 function Date(props)
2 {
3 let {msg="The date is:"} = props
4 let now = new Date()
5 return <div>
6 <span> {msg}</span>
7 <time> {now.toLocaleDateString()}</time>
8 </div>
9
10 }
This function that returns a React Element can be used wherever we see fit:
You might notice that also takes a prop – we can still pass information into the
Component.
Saturday
28
MAR 6:30 AM IST
More Batches
Q43. What is the difference between Real DOM and virtual DOM?
Ans.
DOM stands for Document Object Model. It allows scripts and programs to dynamically
access and update the content, structure, and style of a document. DOM is an
abstraction of a structured code called HTML, also described as HTML DOM.
Virtual DOM
https://mindmajix.com/reactjs-interview-questions 15/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
A standout amongst the most valuable parts of React is its segment lifecycle — so seeing
precisely how segments components after some time is instrumental in building a viable
application.
In such a situation, enclosing the multi-line JSX expression is an option. If you are a first
time user, it may seem awkward but later you can understand everything very easily.
Many times it becomes necessary to avoid multi-lines to perform the task reliably and for
getting the results as expected.
No, it is not possible in the JSX. This is because the word “Class” is a reticent (occupied)
word in the JavaScript. However, you can use you are free to use the word “ClassName”.
If you use the word “Class” the JSX will be translated to JavaScript immediately.
At the highest level, React components have lifecycle events that fall into 3 general
classifications:
1. Initialization
2. State/Property Updates
https://mindmajix.com/reactjs-interview-questions 16/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
3. Destruction
Each React component defines these events as a system for dealing with its properties,
state, and rendered output. Some of these events just happen once, others happen more
as often as possible; understanding these 3 general classes should help you clearly
visualize when certain logic required to be applied.
For instance, a component may need to add an event audience to the DOM when it
initially mounts. In any case, it ought to likely expel those event listeners when the
component unmounts from the DOM with the goal that not relevant handling that doesn't
occur.
Inside these 3 general buckets exist various particular lifecycle hooks — basically unique
techniques - that can be used by any React component to all the more precisely manage
updates. Seeing how and when these hooks fire is vital to building stable components
and will empower you to control the rendering procedure (enhancing execution).
https://mindmajix.com/reactjs-interview-questions 17/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Observe the diagram above. The events under "Initialization" just happen when a
component is first initialized or added to the DOM. Thus, the events under "Devastation"
just happen once (when the component is expelled from the DOM). However, the events
under "Update" happen each time the properties or state of the component change.
For instance, components will naturally re-render themselves whenever their properties
or state change. However, at times a component should not update - so keeping the
component from re-rendering may enhance the execution of our application.
Conventional MVC designs have functioned admirably to separate the worries of data
(Model), UI (View) and logic (Controller) — however many web engineers have found
impediments with that approach as applications develop in measure. In particular, MVC
architectures as often as possible experience 2 primary issues:
Ineffectively defined data flow: The cascading updates which happen crosswise over
perspectives frequently prompt a tangled web of events which is hard to debug.
Lack of data integrity: Model data can be changed from anyplace, yielding erratic
results over the UI.
With the Flux pattern complex, UIs never again experience the ill effects of cascading
updates; any given React component will have the capacity to recreate its state in light of
the information given by the store. The flux pattern likewise upholds data integrity by
limiting direct access to the shared data.
While a technical interview, it is awesome to talk about the contrasts between the Flux
and MVC configuration designs inside the setting of a particular illustration:
https://mindmajix.com/reactjs-interview-questions 18/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
For instance, imagine we have a "master/detail" UI in which the client can choose a
record from a rundown (master view) and alter it utilizing an auto-populated form (detail
view).
With a MVC architecture, the data contained inside the Model is shared between both the
master and detail views. Each of these perspectives may have its own particular
Controller assigning updates between the Model and the View. Anytime the information
contained inside the Model may be updated — and it's hard to know where precisely that
change happened. Did it occur in one of the Views sharing that Model, or in one of the
Controllers? Since the Model's information can be transformed by any performing artist in
the application, the danger of information contamination in complex UIs is more
prominent than we'd like.
With a Flux architecture, the Store data is correspondingly shared between different
Views. However this data can't be straightforwardly changed — the greater part of the
solicitations to update the data must go through the Action > Dispatcher chain first,
eliminating the risk of arbitrary data pollution. At the point when refreshes are made to the
data, it's presently significantly less demanding to find the code requesting for those
progressions.
On the off chance that React components are basically state machines that produce UI
markup, at that point what are stateless segments?
Stateless components (a kind of "reusable" components) are simply pure functions that
render DOM construct exclusively with respect to the properties gave to them.
As you can see, this component has no requirement for any internal state — not to
mention a constructor or lifecycle handlers. The yield of the component is absolutely a
function of the properties gave to it.
ReactNode
https://mindmajix.com/reactjs-interview-questions 19/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Yes, it is possible. The best way to perform this task is by using the spread operator. It
can also be done with listing the properties but this is a complex process.
It is necessary because components are not the DOM element but they are constructors.
If they are not capitalized, they can cause various issues and can confuse developers
with several elements. At the same time, the problem of integration of some elements
and commands can be there.
Ans. React implements Synthetic events to improve the consistency and performance of
applications and interfaces. The synthetic event is a cross-browser wrapper around the
browser’s native event. It combines the behaviour of multiple browsers into a single API
to make sure events have the same properties across different browsers and platforms.
When the components are rendered twice, Virtual Dom begins checking the modifications
elements have got. They represent the changed element on the page simply. There are
several other elements that don’t go through changes. To cut down the changes to the
DOM as an outcome of user activities, DOM doffing is considered. It is generally done to
boost the performance of the browser. This is the reason for its ability to perform all the
tasks quickly.
It is possible. The process is quite similar to that of nesting the HTML elements. However,
there are certain things that are different in this. You must be familiar with the source and
destination elements to perform this task simply.
https://mindmajix.com/reactjs-interview-questions 20/21
27/2/2020 Top 50 React JS Interview Questions - You Must Learn In 2020
Call Our Advisor Drop us a Query
https://mindmajix.com/reactjs-interview-questions 21/21