-
-
Save ahgood/13a5a09669c6a605fb0a9ff497958473 to your computer and use it in GitHub Desktop.
ES7 async/await version of setTimeout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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