Skip to content

Instantly share code, notes, and snippets.

@eteeselink
Created November 13, 2015 13:55
Show Gist options
  • Save eteeselink/81314282c95cd692ea1d to your computer and use it in GitHub Desktop.
Save eteeselink/81314282c95cd692ea1d 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();
@daverave1212
Copy link

Thanks!

@Dave-lab12
Copy link

thank you very much

@janguianof
Copy link

thanks!

@debbysa
Copy link

debbysa commented Sep 14, 2020

thank you

@helder-hernandez-cta
Copy link

Gracias 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment