Skip to content

Instantly share code, notes, and snippets.

@crazy4groovy
Created May 28, 2021 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crazy4groovy/7db4adecbf9f839383bde61d8a0159ff to your computer and use it in GitHub Desktop.
Save crazy4groovy/7db4adecbf9f839383bde61d8a0159ff to your computer and use it in GitHub Desktop.
"most productive" exception handling ever (JavaScript)
try {
// something that might go wrong...
} catch (e) {
var url = 'https://stackoverflow.com/search?q=[js]+' + e.message;
window.open(url, '_blank');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment