Last active
May 16, 2018 12:50
-
-
Save pbojinov/0c3a8a4fea3d5ae4ee4fc3b154a0f898 to your computer and use it in GitHub Desktop.
Debugging Javascript
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
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); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lol