Optional
options: boolean | AddEventListenerOptionsThe unhandledrejection
event is sent to the global scope when a JavaScript
Promise that has no rejection handler is rejected.
The default behavior when this event occurs is to print the error to the screen
using console.error()
, and no further application code
is executed. The user must then press the +
button to exit the application.
Call event.preventDefault()
to supress this default behavior.
Optional
options: boolean | AddEventListenerOptionsOptional
options: boolean | AddEventListenerOptionsGenerated using TypeDoc
The
error
event is sent to the global scope when an unhandled error is thrown.The default behavior when this event occurs is to print the error to the screen using
console.error()
, and no further application code is executed. The user must then press the+
button to exit the application. Callevent.preventDefault()
to supress this default behavior.