Event Listeners & Handlers

How do you create and dispatch custom events?
const event = new CustomEvent('userAction', {
  detail: { userId: 123 },
  bubbles: true,
  cancelable: true
});
Next Question (10/20)