What is the virtual DOM?
Virtual DOM and Reconciliation
Audio flashcard · 0:13Nortren·
What is the virtual DOM?
0:13
The virtual DOM is an in-memory JavaScript representation of the real DOM. When state changes, React builds a new virtual DOM tree, compares it with the previous one, and updates only the parts of the real DOM that actually changed.