Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kenmorechalfant/d2f190cddd6e875cd3151e10666e3a41 to your computer and use it in GitHub Desktop.
Save kenmorechalfant/d2f190cddd6e875cd3151e10666e3a41 to your computer and use it in GitHub Desktop.
(async/await) wait / sleep
let wait = ms => new Promise((r, j)=>setTimeout(r, ms));
await wait(2000); // sleep for 2 seconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment