Decrypting answers...
Ctrl+/ to search
Showing results for ""
No questions found
Try different keywords or check your spelling

React Basics

What is React?

↑ Back to top

What are the advantages and disadvantages of React?

↑ Back to top

What distinguishes React from Angular?

↑ Back to top

Virtual DOM

What is the Virtual DOM?

↑ Back to top

What is the difference between the DOM and the Virtual DOM?

↑ Back to top

JSX and Props

What is JSX?

↑ Back to top

What are props used for?

↑ Back to top

What is the difference between state and props?

↑ Back to top

What is prop drilling?

↑ Back to top

How do you enforce typing for props?

↑ Back to top

How do you check if only one child component was passed in props?

↑ Back to top

React API

What Is React Context Used For?

↑ Back to top

What Is the Role of Keys in React?

↑ Back to top

What Is the Purpose of refs in React?

↑ Back to top

What Is ReactDOM?

↑ Back to top

What Is the Purpose of the render() Function?

↑ Back to top

React Hooks

What Are Hooks Used For?

↑ Back to top

What Are the Benefits of Using Hooks?

↑ Back to top

How to Skip the Invocation of useEffect?

↑ Back to top

How to Invoke the useEffect Hook Only Once?

↑ Back to top

How to Memoize Computations Using Hooks?

↑ Back to top

How to Create "Heavy" Objects Using Hooks?

↑ Back to top

Components

What is the Difference Between Functional and Class Components?

↑ Back to top

Controlled vs. Uncontrolled Components

↑ Back to top

What are Higher Order Components?

↑ Back to top

What is the Purpose of React.memo()?

↑ Back to top

What is PureComponent?

↑ Back to top

What Are Error Boundaries?

↑ Back to top

What Lifecycle Methods Do You Know?

↑ Back to top

How Do You Execute an Action Only Once During Rendering?

↑ Back to top

Is the setState() Method Synchronous or Asynchronous?

↑ Back to top

Why Should You Not Modify this.state Directly?

↑ Back to top

What Is the Purpose of the Function Passed to setState()?

↑ Back to top

Presentational vs Container Components

↑ Back to top

What is the Purpose of the StrictMode Component?

↑ Back to top

Events

What is the difference between events in React and HTML?

↑ Back to top

What is a SyntheticEvent?

↑ Back to top

React Router

What is the purpose of React Router?

↑ Back to top

What types of <Router> components are available?

↑ Back to top

What is the difference between <BrowserRouter> and <HashRouter>?

↑ Back to top

How can routing be triggered programmatically?

↑ Back to top

How to Handle a Missing Page (404 Status) in React Router?

↑ Back to top

How to Handle Redirection in React Router?

↑ Back to top

How to Split Code Based on the URL?

↑ Back to top

React Redux

What is Redux?

↑ Back to top

What are the components of Redux?

↑ Back to top

What are the benefits of using Redux?

↑ Back to top

What is Redux Thunk used for?

↑ Back to top

What is Redux Saga used for?

↑ Back to top

Performance

What Would You Do If the Application Renders Too Slowly?

↑ Back to top