Skip to content

Instantly share code, notes, and snippets.

@nivrith
Created May 28, 2022 10:03
Show Gist options
  • Save nivrith/dff62bb7d573053745a53bb68f7b5ef7 to your computer and use it in GitHub Desktop.
Save nivrith/dff62bb7d573053745a53bb68f7b5ef7 to your computer and use it in GitHub Desktop.
Async Iteration using for await (...) loop
(async function () {
for await (const batch of batchTasks(tasks, 5)) {
console.log('batch', batch);
//Do something with the processed batch
renderPost(batch, appDiv);
}
loadingDiv.innerText = 'Loaded';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment