Last active
September 2, 2017 04:05
-
-
Save flockonus/7c6431d0c2929528abf928f99ab17751 to your computer and use it in GitHub Desktop.
async wont wait forEach :(
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
function performTask(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
// this wont work as intended | |
async function asyncFn1() { | |
const someTasks = [1, 2, 3, 4, 5]; | |
let taskSum = 0; | |
someTasks.forEach(async t => { | |
await performTask(t); | |
taskSum += t; | |
}); | |
console.log("fn1", taskSum); // fn1 0 | |
} | |
// This works as intended! | |
async function asyncFn2() { | |
const someTasks = [1, 2, 3, 4, 5]; | |
let taskSum = 0; | |
for (let t of someTasks) { | |
await performTask(t); | |
taskSum += t; | |
} | |
console.log("fn2", taskSum); // fn2 15 | |
} | |
asyncFn1(); | |
asyncFn2(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment