Created
September 11, 2020 20:25
-
-
Save lkostrowski/4fdb2fea016e3e8b6238d09d6702325f to your computer and use it in GitHub Desktop.
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
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