Skip to content

Instantly share code, notes, and snippets.

@ironman9967
Created February 10, 2021 18:43
Show Gist options
  • Save ironman9967/9dcbae4da1a4998063f550a46f99a75b to your computer and use it in GitHub Desktop.
Save ironman9967/9dcbae4da1a4998063f550a46f99a75b to your computer and use it in GitHub Desktop.
Promise.all([ 1000, 2000, 3000 ].map(async n => await new Promise(r => setTimeout(() => {
console.log(n)
r()
}, n))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment