Event Bubbling & Capturing

What pattern does this code demonstrate?
parent.addEventListener('click', function handler(e) {
  console.log('Clicked');
  this.removeEventListener('click', handler);
});
Next Question (17/20)