Creating Custom Events

How do you prevent a custom event from being cancelable?
const nonCancelableEvent = new CustomEvent('action', {
  cancelable: false,
  detail: { type: 'save' }
});

document.addEventListener('action', (e) => {
  e.preventDefault(); // Will have no effect
});
Next Question (5/20)