Skip to content

Instantly share code, notes, and snippets.

@Deepak13245
Created June 2, 2020 19:01
Show Gist options
  • Save Deepak13245/629c8cf3d2178a5d0ce04ae8ba0fe1c7 to your computer and use it in GitHub Desktop.
Save Deepak13245/629c8cf3d2178a5d0ce04ae8ba0fe1c7 to your computer and use it in GitHub Desktop.
Sleep function in javascript
function sleep(timeout) {
return new Promise(resolve => setTimeout(resolve, timeout));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment