Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Last active May 16, 2018 12:50
Show Gist options
  • Save pbojinov/0c3a8a4fea3d5ae4ee4fc3b154a0f898 to your computer and use it in GitHub Desktop.
Save pbojinov/0c3a8a4fea3d5ae4ee4fc3b154a0f898 to your computer and use it in GitHub Desktop.
Debugging Javascript
try {
doSomething();
} catch(e) {
window.open('http://stackoverflow.com/search?q=[js] +' + e.message);
}
// or...
window.onError = function(e) {
window.open('http://stackoverflow.com/search?q=[js] +' + e.message);
});
@kyvaith
Copy link

kyvaith commented May 16, 2018

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment