Event Bubbling & Capturing

What will happen with this event listener configuration?
element.addEventListener('touchstart', e => {
  e.preventDefault();
  e.stopPropagation();
}, { passive: true });
Next Question (16/20)