Note: This feature is available in Web Workers.
The PromiseRejectionEvent interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
For details, see Promise rejection events.
PromiseRejectionEvent()Creates a PromiseRejectionEvent event, given the type of event (unhandledrejection or rejectionhandled) and other details.
Also inherits properties from its parent Event.
PromiseRejectionEvent.promise Read only
The JavaScript Promise that was rejected.
PromiseRejectionEvent.reason Read only
A value or Object indicating why the promise was rejected, as passed to Promise.reject().
This interface has no unique methods; inherits methods from its parent Event.
rejectionhandledFired when a JavaScript Promise is rejected, and after the rejection is handled by the promise's rejection handling code.
unhandledrejectionFired when a JavaScript Promise is rejected but there is no rejection handler to deal with the rejection.
This simple example catches unhandled promise rejections and logs them for debugging purposes.
window.onunhandledrejection = (e) => {
console.log(e.reason);
};
| Specification |
|---|
| HTML> # promiserejectionevent> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
PromiseRejectionEvent |
49 | 79 | 69 | 36 | 11 | 49 | 79 | 36 | 11.3 | 5.0 | 49 | 11.3 |
PromiseRejectionEvent |
49 | 79 | 69 | 36 | 11 | 49 | 79 | 36 | 11.3 | 5.0 | 49 | 11.3 |
promise |
49 | 79 | 69 | 36 | 11 | 49 | 79 | 36 | 11.3 | 5.0 | 49 | 11.3 |
reason |
49 | 79 | 69 | 36 | 11 | 49 | 79 | 36 | 11.3 | 5.0 | 49 | 11.3 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PromiseRejectionEvent