What is Virtual DOM?

Easy0-2 Years

What is Virtual DOM?

Virtual DOM is a lightweight copy of the Real DOM. React compares the Virtual DOM with the previous version and updates only the changed elements in the Real DOM.

Advantages

  • Faster rendering
  • Better performance
  • Efficient DOM updates