Skip to content

Instantly share code, notes, and snippets.

@ffernand
Forked from mrienstra/verbose_await_promise.js
Created August 5, 2022 19:51
Show Gist options
  • Save ffernand/15ffc7dc83f283bd87ae4846c6a5d300 to your computer and use it in GitHub Desktop.
Save ffernand/15ffc7dc83f283bd87ae4846c6a5d300 to your computer and use it in GitHub Desktop.
await new Promise(function (resolve) {
setTimeout(function () {
resolve();
}, 1000);
});
// ... Can be shortened to:
await new Promise(function (resolve) {
setTimeout(resolve, 1000);
});
// ... Can be shortened to:
await new Promise((resolve) => {
setTimeout(resolve, 1000);
});
// ... Can be shortened to:
await new Promise((resolve) => setTimeout(resolve, 1000));
// ... Can be shortened to:
await new Promise(resolve => setTimeout(resolve, 1000));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment