← All Concepts
🪞
Virtual DOM
RenderingReact's internal model for comparing render results and minimizing real DOM work
Virtual DOM is the way React represents render output in memory, compares the previous and next results, and applies only the necessary changes to the real DOM. Developers write as if the whole UI is recalculated, but React narrows the actual updates.