DEV Community

Sanity Tip For JavaScript Devs: Learn to Run Asynchronous Functions in Array.map()

Mohammadjavad Raadi on June 13, 2019

The Problem I was writing some API code recently using Node.js, and came across a place where I needed to use Array.map() with an async ...
Collapse
 
4umfreak profile image
Mark Voorberg

Why not just use an old-school for-loop? Easy-peasy, problem solved and my promises resolve in the order I call them; unlike Promise.all()...

Genuinely asking.

Collapse
 
chiangs profile image
Stephen Chiang

One use case for getting a promise back is if you are uploading a bunch of files and you want to check if any of them failed and do some operation to either auto try that specific one or help the user figure out which one failed.

Collapse
 
mjraadi profile image
Mohammadjavad Raadi

I'm not sure if you're asking why use map over for-loops but if you are, checkout out this post. You can scroll down to the "Benefits of map over for loops" section.
I use Promise.all when the order of my async functions to be resolved is not important but I need them all to be resolved before I can go on.