Skip to content

Instantly share code, notes, and snippets.

@jsmithdev
Forked from eteeselink/delay.js
Created June 20, 2020 00:21
Show Gist options
  • Save jsmithdev/2e86fb589de94974354cbf7557a2ff88 to your computer and use it in GitHub Desktop.
Save jsmithdev/2e86fb589de94974354cbf7557a2ff88 to your computer and use it in GitHub Desktop.
ES7 async/await version of setTimeout
const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
async function something() {
console.log("this might take some time....");
await delay(5000);
console.log("done!")
}
something();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment