Skip to content

Instantly share code, notes, and snippets.

@flockonus
Last active September 2, 2017 04:05
Show Gist options
  • Save flockonus/7c6431d0c2929528abf928f99ab17751 to your computer and use it in GitHub Desktop.
Save flockonus/7c6431d0c2929528abf928f99ab17751 to your computer and use it in GitHub Desktop.
async wont wait forEach :(
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