Coalesces multiple calls to a function during one execution context into a
single one. This assists with handling events that would lead to rendering,
for example-- we only want to render to the DOM once, even if there are
multiple changes occurring that, by themselves, would trigger a re-render.
Coalesces multiple calls to a function during one execution context into a single one. This assists with handling events that would lead to rendering, for example-- we only want to render to the DOM once, even if there are multiple changes occurring that, by themselves, would trigger a re-render.
Recommended reading: