Event Bubbling & Capturing

What does the 'composed' property control in custom events?
const event = new CustomEvent('myEvent', {
  bubbles: true,
  composed: true,
  detail: { data: 'example' }
});
Next Question (6/20)