Skip to content

Instantly share code, notes, and snippets.

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