DEV Community

kaustav karmakar
kaustav karmakar

Posted on

How to learn React js to become a better developer

1)What is React?

Component-Based
Virtual Dom
Runs on diffing algorithm
It is a library.
React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.
2)What is virtual Dom?
The virtual DOM (VDOM) is a programming concept where an ideal, or “virtual”, representation of a UI is kept in memory and synced with the “real” DOM by a library such as ReactDOM.

Top comments (0)