adspace


What is the difference between real dom and virtual dom.

Answer Posted / Devesh Kumar Gupta

In React.js, Real DOM refers to the actual Document Object Model that represents the HTML in a web browser. Virtual DOM, on the other hand, is an abstraction of the Real DOM built by React. The main advantage of using Virtual DOM is that it increases efficiency by minimizing the direct manipulation of the Real DOM and only updating the parts of the DOM that actually need to change.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to use events in reactjs? Give an example of using events?

564


How would you create higher order components (hocs) in react.js?

448