Created
October 3, 2017 13:13
-
-
Save atinux/f0060a1abec444e11a992d6ccc8b3847 to your computer and use it in GitHub Desktop.
forEach example with async/await (fail)
This file contains 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
const waitFor = (ms) => new Promise((resolve) => setTimeout(resolve, (ms || 0))) | |
[1, 2, 3].forEach(async (num) => { | |
await waitFor(50) | |
console.log(num) | |
}) | |
console.log('Done') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment