Skip to content

Instantly share code, notes, and snippets.

@lkostrowski
Created September 11, 2020 20:25
Show Gist options
  • Save lkostrowski/4fdb2fea016e3e8b6238d09d6702325f to your computer and use it in GitHub Desktop.
Save lkostrowski/4fdb2fea016e3e8b6238d09d6702325f to your computer and use it in GitHub Desktop.
new Promise(resolve => {
throw new Error(0) return 1
})
.then(console.log)
.catch(e => {
console.log(e) return 2;
})
.then(console.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment