Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 07:07
Show Gist options
  • Save shahab570/696177b18ee7867c9c222207a24ceb8d to your computer and use it in GitHub Desktop.
Save shahab570/696177b18ee7867c9c222207a24ceb8d to your computer and use it in GitHub Desktop.
const promise = new Promise((resolve, reject) => {
has_money = false;
setTimeout(() => {
if (has_money) {
resolve("Here is your car. Enjoy your ride");
} else {
reject("Sorry, I don't have money to buy car");
}
}, 5000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment