Debounce: Group repeated calls into single. Throttle: Execute at most once per period.
Solution Code
JavaScript
window.addEventListener('resize', debounce(handleResize, 200));
Explanation
Debounce waits until activity stops. Throttle guarantees regular execution.Guided Hints
Implement debounce function
Real-world use cases