V

Virtual DOM

Definition
A lightweight in-memory representation of the real DOM used by frameworks like React to optimize UI rendering. Changes are first applied to the virtual DOM, then diffed against the real DOM, and only the necessary updates are applied to minimize expensive DOM operations.

Defined Term