Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created July 7, 2024 19:18
Show Gist options
  • Save luizbills/fca55ab6f436e9637c1a64738e1011d0 to your computer and use it in GitHub Desktop.
Save luizbills/fca55ab6f436e9637c1a64738e1011d0 to your computer and use it in GitHub Desktop.
Catch javascript errors
window.addEventListener('error', (e) => {
alert('Error:' + e.message)
return false
})
window.addEventListener('unhandledrejection', function (e) {
alert('Error (in promise): ' + e.reason)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment