What is a virtual DOM in React
Manav Pandya
Select an image from your device to upload
Angular uses real DOM while react uses virtual DOM so what is the virtual DOM in React
In short, a virtual DOM is the cloned version of HTML DOM. React uses this version for any UI render/rerenders and compares it with HTML DOM to update the nodes which are updated in Virtual DOM.