Creating Custom Events

What is the purpose of the 'composed' option in custom events?
const shadowEvent = new CustomEvent('shadowAction', {
  bubbles: true,
  composed: true,
  detail: { action: 'update' }
});
Next Question (6/20)