Glossary coding Term Page
Partial Update
Swap or patch the specific UI fragment that reflects new state.
Core Idea
A partial update inspects the state diff, finds the DOM node that represents the changed entity, and replaces only that slice. It keeps the rest of the tree untouched, reducing layout work and preserving local state when needed.
Why It Matters Here
Mathbong teaches partial updates alongside render functions so UI helpers can scale from prototypes to dashboards. Combining them with fragments or observers shows how performance and clarity go hand in hand.