Rendering Performance
Everything on SkillVeris tagged Rendering Performance — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
useEffect vs useLayoutEffect: What Is the Difference?
useEffect runs its callback asynchronously after the browser has painted the updated DOM to the screen, while useLayoutEffect runs synchronously after DOM muta…
What Is Layout Thrashing and How Do You Avoid It?
Layout thrashing happens when JavaScript repeatedly interleaves DOM writes and reads that force layout, causing the browser to synchronously recalculate layout…