Last active
September 8, 2024 15:10
-
-
Save anvk/5602ec398e4fdc521e2bf9940fd90f84 to your computer and use it in GitHub Desktop.
Sequential execution of Promises using reduce()
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 asyncFunc(e) { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => resolve(e), e * 1000); | |
}); | |
} | |
const arr = [1, 2, 3]; | |
let final = []; | |
function workMyCollection(arr) { | |
return arr.reduce((promise, item) => { | |
return promise | |
.then((result) => { | |
console.log(`item ${item}`); | |
return asyncFunc(item).then(result => final.push(result)); | |
}) | |
.catch(console.error); | |
}, Promise.resolve()); | |
} | |
workMyCollection(arr) | |
.then(() => console.log(`FINAL RESULT is ${final}`)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My pay: