Created
June 9, 2021 21:13
-
-
Save shlomisas/70ae8c332439d48b758fc6a35675d283 to your computer and use it in GitHub Desktop.
window.onerror not working example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onerror = (message) => { | |
console.log(`in window.onerror: ${message}`); | |
}; | |
new Promise((resolve, reject) => { | |
rj(new Error('some unhandeled promise rejection error')) | |
}); | |
throw new Error('some regular error'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment