Skip to content

Instantly share code, notes, and snippets.

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