ExplanationReconciliation & Diffing
What is the virtual DOM?
React keeps an in-memory snapshot of the UI called the virtual DOM. On every render, a new virtual DOM tree is produced and compared against the previous one. Only the differences are applied to the real DOM, minimizing expensive browser operations.