defaultPrevented
defaultPrevented is a boolean property of the Event interface in web browsers. It indicates whether preventDefault() has been called on a given event. When true, the event’s default action should be prevented; when false, the default action may proceed.
Whether defaultPrevented can be set depends on the event’s cancelable flag. If an event.cancelable is true,
During event dispatch, the default action associated with a cancelable event will be suppressed when defaultPrevented
Usage commonly involves calling preventDefault() within an event handler to stop a default action, such as preventing