Event Bubbling & Capturing

Why combine requestAnimationFrame with a passive scroll listener?
window.addEventListener('scroll', () => {
  requestAnimationFrame(() => {
    // Handle scroll
  });
}, { passive: true });
Next Question (20/20)