Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created April 29, 2020 04:46
Show Gist options
  • Save bitfishxyz/e4f0ae65fb26928631f2fbe97094a068 to your computer and use it in GitHub Desktop.
Save bitfishxyz/e4f0ae65fb26928631f2fbe97094a068 to your computer and use it in GitHub Desktop.
const promise = new Promise((resolve, reject) => {
console.log(1);
setTimeout(() => {
console.log("timerStart");
resolve("success");
console.log("timerEnd");
}, 0);
console.log(2);
});
promise.then((res) => {
console.log(res);
});
console.log(4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment