Thursday, 17 August 2017

What is React.Js ?

1.React is a JavaScript library created by Facebook for building complex, interactive user interfaces in web and Desktop applications.

2.React uses virtual DOM which is JavaScript object. This improves application performance as JavaScript virtual DOM is faster than the regular DOM.

3.It follows the component based approach which helps in building reusable UI components.

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