Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 10, 2018 15:32
Show Gist options
  • Save shlomisas/f10945ca97147ef6bba7bb96b516bcb5 to your computer and use it in GitHub Desktop.
Save shlomisas/f10945ca97147ef6bba7bb96b516bcb5 to your computer and use it in GitHub Desktop.
js-app-main-error-handling-async
(async() => {
try {
await new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error('something went wrong..'));
}, 0);
});
} catch (e) {
console.error(e);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment