Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Created June 9, 2021 21:13
Show Gist options
  • Save shlomisas/70ae8c332439d48b758fc6a35675d283 to your computer and use it in GitHub Desktop.
Save shlomisas/70ae8c332439d48b758fc6a35675d283 to your computer and use it in GitHub Desktop.
window.onerror not working example
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