Skip to content

Instantly share code, notes, and snippets.

@ericmp33
Created September 7, 2023 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericmp33/5aadc23216ad358e872540eca18f7da4 to your computer and use it in GitHub Desktop.
Save ericmp33/5aadc23216ad358e872540eca18f7da4 to your computer and use it in GitHub Desktop.
Wait 5 seconds in JS
new Promise(resolve => setTimeout(resolve, 5000)).then(() => {
console.log('hi')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment