Skip to content

Instantly share code, notes, and snippets.

@fodra
Created May 11, 2018 04:33
Show Gist options
  • Save fodra/976722a46847e823bc441a9715801c5a to your computer and use it in GitHub Desktop.
Save fodra/976722a46847e823bc441a9715801c5a to your computer and use it in GitHub Desktop.
Useful snippets of js code
// sleep using promise
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment