W3cubDocs

/Deno

addEventListener

Registers an event listener in the global scope, which will be called synchronously whenever the event type is dispatched.

addEventListener('unload', () => { console.log('All finished!'); });
...
dispatchEvent(new Event('unload'));
function addEventListener(
type: string,
options?: boolean | AddEventListenerOptions | undefined,
): void;
addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined): void

Parameters

type: string
options?: boolean | AddEventListenerOptions | undefined optional

Return Type

void