Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 10, 2018 15:31
Show Gist options
  • Save shlomisas/1f05c4074b364f27b5fedcae9b748587 to your computer and use it in GitHub Desktop.
Save shlomisas/1f05c4074b364f27b5fedcae9b748587 to your computer and use it in GitHub Desktop.
js-app-main-error-handling-sync
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