React Interview Questions - Scrimba
React Interview Questions - Scrimba
React interview
questions
ALEX BOOKER
19 NOV 2020 • 17 MIN READ
If you want to land a great React job in 2020 or 2021, this is the post
for you 😌.
We're bringing you this post on the back of our new React Interview
Questions course with the awesome @Cassidoo 🎉
In that course, Cassidoo draws on her professional experience
working at Netlify (and before that, CodePen) to share 28 likely React
interview questions and example answers.
Without further ado, here are the questions (listed in the same order
that they appear in the course, in case you'd like to use these
resources together):
SUBJECT QUESTION
React DOM What is the difference between the virtual DOM and the
Is the virtual DOM the same as the shadow DOM?
React limitations What are the limitations of React?
JSX What is JSX?
What is the difference between an element and compon
Can you write React without JSX?
Props How do you pass a value from a parent to child?
How do you pass a value from child to parent?
What is prop drilling?
Can a child component modify its own props?
State and lifecycle What is the difference between props and state?
How does state in a class component differ from state in
What is the component lifecycle?
How do you update lifecycle in functional components?
Effects What argument does useEffect take?
When does the useEffect function run?
What is the useEffect function's return value?
Refs What is the difference between ref and state variables?
https://blog.scrimba.com/react-interview-questions/ 2/24
19/11/2020 React interview questions
SUBJECT
ReactQUESTION
interview questions
When is the best time to use refs?
What is the proper way to update a ref in a function com
Context What is the difference between the Context API and prop
When shouldn't you use the Context API?
Other What is a Fragment?
When should you create class-based component versus
What is a higher order component?
What is portal?
What are uncontrolled and uncontrolled components?
React DOM
What is the difference between the virtual DOM and
the real DOM?
The DOM represents an HTML document as a tree structure wherein
each node represents part of the document (for example, an element,
element attribute, or text):
https://blog.scrimba.com/react-interview-questions/ 3/24
19/11/2020 React interview questions
Using vanilla JavaScript and the DOM API, you can access any element
you like (for example, using document.getElementById ) and update it
directly.
When you do this, the browser engine traverses the DOM and re-
renders each node even if that node hasn't changed since the previous
render. This can be noticeably inef cient 😳
Imagine a scenario where you need to update only one tr of 10,000 in
a table . Rendering all 10,000 rows will almost certainly lead to a drop
in frames, potentially causing the table to icker and interrupt the
user's experience.
Every time your app's state updates, React builds a new VDOM and
diffs with the old one to determine what changes are necessary before
updating the DOM directly and ef ciently:
https://blog.scrimba.com/react-interview-questions/ 4/24
19/11/2020 React interview questions
The virtual DOM and Shadow DOM sound similar in name, but that is
where the similarity begins and ends - they are totally unrelated.
🔑 You shouldn't need to know the ins and outs of Shadow DOM
to succeed in React technical interview
📝 Learn more
This screencast provides a short and sweet explanation
of Shadow DOM that will make sense even if you don't
know much about web components
React limitations
What are the limitations of React?
No tool is without its limitations, and React is no exception.
Comparing React and Vue in le size feels fair because they're both
libraries as opposed to frameworks.
Because React does not enforce opinions about how to best structure
code, teams need to be especially diligent about writing code
consistently so that the project can evolve deliberately. This can lead
to communication overhead and steepen the learning curve for
newbies.
JSX
What is JSX?
Similar in appearance to XML and HTML, JavaScript XML (JSX) is used
to create elements using a familiar syntax.
https://blog.scrimba.com/react-interview-questions/ 7/24
19/11/2020 React interview questions
JSX is not part of the ECMAScript speci cation, and therefore no web
browser actually understands JSX.
Props
How do you pass a value from parent to child?
P th l
https://blog.scrimba.com/react-interview-questions/ ! 9/24
19/11/2020 React interview questions
Pass the value as a prop!
React interview questions
🔑 Typically that is all you need to say 👌
📝 Learn more:
React documentation on Components and Props
When the language is selected, we'd like to pass that value back UP to
🔑 Pass a function prop to the child, which the child can call.
Try and include a common example like a CustomForm or
SelectLanguage form component in your answer
props
📝 Learn more:
We deliberately borrowed the SelectLanguage example
component from this StackOver ow answer so you can
read more
While prop drilling is not inherently bad, there are normally more
eloquent and maintainable solutions to explore like component
composition or React Context however, these solutions are not
without their limitations.
A component can update its own state but cannot update its own
props.
https://blog.scrimba.com/react-interview-questions/ 11/24
19/11/2020 React interview questions
Think about it like this: Props belong to the parent component, not the
React interview questions
child component - a child component has no business modifying a
value it does not own. Props are, therefore, read-only.
State is always initiated with a default value, and that value can
change over the lifetime of the component in response to events like
user input or network responses When state changes the component
https://blog.scrimba.com/react-interview-questions/ 12/24
19/11/2020 React interview questions
user input or network responses. When state changes, the component
responds by re-rendering. React interview questions
State is optional, meaning some components have props but no state.
Such components are known as stateless components.
https://blog.scrimba.com/react-interview-questions/ 14/24
19/11/2020 React interview questions
🔑 Use useEffect
📝 Learn more
Using the Effect Hook
Effects
What arguments does useEffect take?
useEffect takes two arguments.
The rst argument is a function called effect and is what gives the
useEffect Hook its name.
📝 Learn more
What is useEffect hook and how do you use it?
If you pass an empty array ([]), the effect runs when the
component is mounted (similar to componentDidMount)
If you pass an array of state variables ([var]), the effect runs
when the component is mounted, and anytime the values of
these variables change
https://blog.scrimba.com/react-interview-questions/ 16/24
19/11/2020 React interview questions
Refs
What is the difference between refs and state
variables?
Both refs and state variables provide a way to persist values between
renders; however, only state variables trigger a re-render.
While refs were traditionally (and still are) used to access DOM
elements directly (for example, when integrating with a third-party
DOM library), it has become increasingly common to use refs in
functional components to persist values between renders that should
not trigger a re-render when the value is updated.
There isn't much reason to use refs for this reason in class
components because it's more natural to store these values in elds
that belong to the class instance and would be persisted between
renders regardless.
Context
What is the difference between the context API and
prop drilling?
In React, you explicitly pass data from parent component to child
The implicit nature of the Context API allows for terser code that is
easier to manage but can also lead to "gotchas!" if the value is
updated unexpectedly as it won't be so easy to trace the value and
learn where it was modi ed linearly.
used incorrectly
React interview questions
📝 Learn more
Hooks API Reference
For this reason, you should only use Context for infrequently updated
data like a theme preference.
📝 Learn more
If you need to answer "why fragments?", this dev.to post is
h
https://blog.scrimba.com/react-interview-questions/ 20/24
19/11/2020 React interview questions
the one
React interview questions
Of cial documentation also touches on the motivation
and the JSX syntactic sugar
https://blog.scrimba.com/react-interview-questions/ 21/24
What is a higher order component?
19/11/2020 React interview questions
While HOCs are associated with React, they aren't a React feature so
much as a pattern inspired by a functional programming pattern
called higher-order functions whereby you also pass functions to
functions.
🔑 The key here would be to recall a time when you have used a
HOC in your own project and to describe why it was the right
pattern for the job
📝 Learn more
This open source repo shows lots of different examples
of what HOCs can look like
What is portal?
React ordinarily has one mounting point - the HTML element you pass
to ReactDOM.render . From here, React adds new elements to the page
in a hierarchy.
You're not too likely to read or write code using Portal in your own
project.
Now React is managing the textarea s value, you must also take
responsibility for setting the textarea s value property also. This way,
the content of the textarea can be updated by updating state. It's
easy to imagine a function called clearTextArea that sets the input
state variable to an empty string causing the textarea to clear.
ALEX BOOKER
26 OCT 2020 • 12 MIN READ
Scrimba © 2020
https://blog.scrimba.com/react-interview-questions/ 24/24