The unhandledrejection
event is fired when a JavaScript Promise
is rejected but there is no rejection handler to deal with the rejection.
Bubbles | No |
Cancelable | No |
Target objects | defaultView |
Interface | PromiseRejectionEvent |
window.addEventListener("unhandledrejection", function (event) { console.warn("WARNING: Unhandled promise rejection. Shame on you! Reason: " + event.reason); });
The unhandledrejection
event implements the PromiseRejectionEvent
interface, which inherits from Event
. You can use the properties and methods defined on these interfaces.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/unhandledrejection