DEV Community

Cover image for Some Top React Interview Questions
Sarah Thompson
Sarah Thompson

Posted on

Some Top React Interview Questions

What is react?

React is an open-source JavaScript library, not a full-blown framework, and was created by Facebook. Instead of being a full MVC (like Angular) - it is only view - built with components. These components parse up the entire UI into small and reusable pieces. Then it renders each of these components independently without affecting the rest of the UI. Since React renders each UI component only as needed there are fast performance speeds.

What are some of the features of react?

It uses the virtual DOM instead of the real DOM, it does server-side rendering, and it does uni-directional data flow or data binding. It can increase an applications performance and can be integrated with other web frameworks.

What's the difference between the real DOM and the virtual DOM?

React makes a virtual copy of the DOM to determine what parts of the actual DOM need to change based on a user’s actions. It then grabs the change date from the Virtual DOM and selectively updates the actual DOM (instead of reloading reloading the entire thing). Since this prevents constant page reloading, it create signification performance improvements.

Real DOM

It updates slow.
Can directly update HTML.
Creates a new DOM if element updates.
DOM manipulation is very expensive.
Too much of memory wastage.

Virtual DOM

Updates Faster
Can't directly update the HTML
Update the JSX if the element updates
DOM Manipulation is very easy
No Memory Waste

What is JSX?

JSX is a shorthand for JavaScript XML. React utilizes the expressiveness of JavaScript along with HTML like template syntax.

Browsers can only read JavaScript objects but JSX in not like a regular JavaScript object, so to allow a browser to read JSX, we need to transform JSX file into a regular JavaScript object using JSX transformers like Babel or Webpack.

You don't need to use JSX to buld websites with React, though it is a helpful tool.

class Tickets extends React.Component {

    render() {
        return (
            <div class="from-edge">
                <Pricing />
                <Seasonpass />
                <Info />
            </div>
        )
    }
}
Enter fullscreen mode Exit fullscreen mode

What does render() do in React?

It returns a single React element which is the representation of the native DOM component, it can also return a group of elements if they are nested within one html element.

Class Components vs Functional Components?

Functional components are a basic React component, defined by the components unchanging props (properties). Class components are the more complex components. Class Components allow you to execute component lifecycle methods as well as manage a component’s state.

What are Arrow Functions in React?

Arrow functions => are a syntax for function expressions and are one of the ways to pass parameters to callback functions. Using an arrow function creates a new function each time the component renders.

What's the difference between ES5 and ES6?

ECMAScript 6 was the second major revision to JavaScript and is also known as ES6 and ECMAScript 2015. ES5 was released in 2009.

Some of the big differences are with require vs import, how to export, and components

// ES5
var React = require('react');
// ES6
import React from 'react';
Enter fullscreen mode Exit fullscreen mode
// ES5
module.exports = Component;
// ES6
export default Component;
Enter fullscreen mode Exit fullscreen mode
// ES5
var MyComponent = React.createClass({
    render: function() {
        return
      <h4>Howdy!</h4>
    };
});
// ES6
class MyComponent extends React.Component {
    render() {
        return
       <h4>Howdy!</h4>
    }
}
Enter fullscreen mode Exit fullscreen mode

What do you know about Flux?

Flux is an architectural pattern that enforces unidirectional data flow - and is not specific to React.

Action > Dispatcher > Store > View

While the Store data is shared between multiple Views, this data can’t be directly mutated — all of the requests to update the data must pass through the Action > Dispatcher chain first. Because of this when there are updates are made to the data, it is easier to find where the code requesting those changes is coming from.

What is Props in React?

Props (short for Properties) are read only components that are passed down from parent to child (maintaining the uni-directional data flow). They are immutable and mostly used to render dynamically created of gotten data - they describe the way a React component is configured.
Properties are set when instantiating the component, and they shouldn't be mutated afterwards. Mutating values within a component are tracked with the state property rather than the props property.

var TicketInfo = React.createClass({
  render: function() {
    return React.createElement("span", {
      className: this.props.className
    }, this.props.message);
  },

});

var ticketMessage = React.createElement(Message, {
  className: "coolTicket",
  message: "You have bought a ticket! Congrats!"
});
ReactDOM.render(ticketMessage)

Enter fullscreen mode Exit fullscreen mode

What is State in React?

State is used to create dynamic and responsive components and can be accessed with this.state(). State is facilitated with event handlers on DOM elements that notify the component of the new state with the updated values retrieved from the DOM (like when a user types in an input box for example). The state of a component can be updated with this.setState().

 getInitialState: function() {
    return { message: this.props.message };
  },

  _ticketCount: function(e) {
    this.setState({ message: e.target.value });
  },

  render: function() {
    return (
      <div>
        <span>How Many Tickets: {this.state.countTickets}</span>
        <br />
        How Many Tickets? <input type="text" value={this.state.countTickets} onChange={this._ticketCount} />
      </div>
    );
Enter fullscreen mode Exit fullscreen mode

What are Refs in React?

Short for Reference they help to store a reference to a particular React element or component, which will then be returned by the component's render configuration function. They are often used when you need to manage focus, media playback, or integrate with third-party DOM libraries.

What are some lifecycle methods?

All react lifecycle methods can be broken into these categories: Initialization, State/Property Updates, and Destruction.
Below are a handful of the lifecycle methods for react.

componentWillMount() This is called just before rendering takes place (client and also server-side).
componentDidMount() This is called on the client side only after first render - you might use this lifecycle method to fetch data from a server
shouldComponentUpdate() This returns a Boolean, by default false, of if you want your component to update.
componentWillUpdate() This is called before the rendering of a component.
componentWillReceiveProps() This lifecycle method is called as soon as the props are received from their component's parent class but also before the render is called (or recalled).
componentDidUpdate() This is called after the rendering for a component takes place.
componentWillUnmount() This is used to clear up the memory spaces after a component is unmounted from the DOM.

What is React Router?

React Router is a routing library built on top of React that keeps the URL in sync with data that’s currently being displayed on the web page while maintaining a standardized structure. It is used for developing single page web applications. Unlike for conventional routing only the history attribute is change instead of having a HTTP request sent to a server.

Top comments (13)

Collapse
 
krishan111 profile image
Krishan111 • Edited

Great post💓.
You can highlight your code by writing the name of language after the three backticks(`).
Eg:- ''' name_of_language
(content)
'''

Collapse
 
salothom profile image
Sarah Thompson

That's super helpful! Thanks!

Collapse
 
iamcoderanddev profile image
Nick Williams • Edited

Thanks it was helpful @salothom & @krishan111

Collapse
 
iamludal profile image
Ludal 🚀

Thanks for those information !

When you say :

Class Components allow you to execute component lifecycle methods as well as manage a component’s state.

But you can also do it with functional components (useState, useEffect), though there are some small limitations 🤔

Collapse
 
alexgeorgiev17 profile image
Alex Georgiev

This is a great post! I can also leave a project which I'm involved in - quizapi.io/

The QuizAPI is a SaaS that lets you test your knowledge on a wide variety of technical topics. You can create your own Quiz or get a random set of questions for a specific topic including Linux, DevOps, BASH, PHP and lots more. We offer an easy to use API which allows you to embed the quiz on your own website.

Please be aware that we're still developing it and we're also expanding the topics and React will be a great new addition to it (we still haven't added any React question quizzes/questions. I would like to announce this in advance so people won't say this is a clickbait).

Cheers for the great article!

Collapse
 
johannchopin profile image
johannchopin

Where did you read that React does server-side rendering?

Collapse
 
ishwarkaushik profile image
Ishwar Kaushik

Wondering the same thing. I thought we may need something like Next to do SSR efficiently.

Collapse
 
iamludal profile image
Ludal 🚀

React doesn't provide SSR on its own, but as Ishwar said, one can do it using Next.js

Thread Thread
 
maksimmedvedev profile image
MaksimMedvedev

react-dom/server's renderToString() and hydrate() should do the thing I think (with some little thousand-line additional code😂)

Collapse
 
preacherxp profile image
preacherxp • Edited

Class components are the more complex components. Class Components allow you to execute component >lifecycle methods as well as manage a component’s state.

this is no longer true since React 16.8

Collapse
 
codehrafn profile image
Hans

Thank you! a good overview of understanding React.js

Collapse
 
buraksaraloglu profile image
Burak Saraloglu

"OK, virtual dom has quick update feature but how it does even if you have 1k nodes inside of that page?"

One of the questions that I got.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.