Skip to content

Instantly share code, notes, and snippets.

@vilmid
Last active November 21, 2022 22:41
Show Gist options
  • Select an option

  • Save vilmid/ab4552a8cad9e8e36a21ba1e21aec8eb to your computer and use it in GitHub Desktop.

Select an option

Save vilmid/ab4552a8cad9e8e36a21ba1e21aec8eb to your computer and use it in GitHub Desktop.
const sleep = async (ms) => await new Promise(resolve => setTimeout(resolve, ms))
(async () => {
console.log('Hello,')
await sleep(3000)
console.log('world!')
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment