Skip to content

Instantly share code, notes, and snippets.

@alibalbars
Created July 30, 2021 21:30
Show Gist options
  • Save alibalbars/a248825faa39f3f899b5c155ee2df848 to your computer and use it in GitHub Desktop.
Save alibalbars/a248825faa39f3f899b5c155ee2df848 to your computer and use it in GitHub Desktop.
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