Creating Custom Events

What is event bubbling in the context of custom events?
const childEvent = new CustomEvent('childAction', {
  bubbles: true,
  detail: { data: 'example' }
});

child.dispatchEvent(childEvent);
Next Question (4/20)