Skip to content

Instantly share code, notes, and snippets.

@jjmartucci
Created March 12, 2022 02:11
Show Gist options
  • Save jjmartucci/3eefc4d9a01be6a0969d4990d260ae0e to your computer and use it in GitHub Desktop.
Save jjmartucci/3eefc4d9a01be6a0969d4990d260ae0e to your computer and use it in GitHub Desktop.
JS Sleep
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