Skip to content

Instantly share code, notes, and snippets.

@rcmlee99
Forked from atinux/async-foreach.js
Created April 10, 2018 03:51
Show Gist options
  • Save rcmlee99/937e697af9e0d1d4860112245ec7afbe to your computer and use it in GitHub Desktop.
Save rcmlee99/937e697af9e0d1d4860112245ec7afbe to your computer and use it in GitHub Desktop.
JavaScript: async/await with forEach()
const waitFor = (ms) => new Promise(r => setTimeout(r, ms))
const asyncForEach = (array, callback) => {
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array)
}
}
const start = async () => {
await asyncForEach([1, 2, 3], async (num) => {
await waitFor(50)
console.log(num)
})
console.log('Done')
}
start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment