Skip to content

Instantly share code, notes, and snippets.

@alibalbars
Created July 30, 2021 17:16
Show Gist options
  • Save alibalbars/d57c0d613126482bd4733476bf1c99e8 to your computer and use it in GitHub Desktop.
Save alibalbars/d57c0d613126482bd4733476bf1c99e8 to your computer and use it in GitHub Desktop.
new Promise(function(resolve, reject) {
setTimeout(() => {
reject(new Error("Whoops!")); (*)
}, 1000);
}).catch(alert);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment