Created
February 10, 2021 18:43
-
-
Save ironman9967/9dcbae4da1a4998063f550a46f99a75b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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