Event Bubbling & Capturing

What combination of event listener options would improve scrolling performance while ensuring the handler runs only once during capturing?
element.addEventListener('click', handler, {
  capture: true,
  once: true,
  passive: true
});
Next Question (13/20)