Created
July 30, 2021 21:30
-
-
Save alibalbars/a248825faa39f3f899b5c155ee2df848 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(function (resolve, reject) { | |
setTimeout(() => { | |
try{ | |
noSuchAFunction(); // not defined | |
} catch(error) { | |
reject(error); | |
} | |
}, 1000); | |
}).catch(e => console.log('Something went wrong!')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment