chikoddish / Mern-Interview

My interview preparation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mern-Interview

Welcome to My interview preparation

I'll try to add atleaat one question each day.

React.Js

# How does React work?

- 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.

About

My interview preparation.