Last active
May 10, 2018 15:31
-
-
Save shlomisas/1f05c4074b364f27b5fedcae9b748587 to your computer and use it in GitHub Desktop.
js-app-main-error-handling-sync
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 { | |
const a = 1; | |
throw new Error('something went wrong..'); | |
const b = 2; | |
} catch (e) { | |
console.error(e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment