Friday, 25 May 2018

How React Js works ?

React uses the virtual DOM instead of the real DOM and whenever state value changes react detect the changes and update particular field with new value without page reload.
It uses server-side rendering and follows both uni-directional data flow as well as data binding.

No comments:

Post a Comment

What is diffing algorithm?

  React needs to use algorithms to find out how to efficiently update the UI to match the most recent tree. The diffing algorithms is genera...