DEV Community

Discussion on: Applying the callback -> async/await conversion process to a real-world example

Collapse
 
ccleary00 profile image
Corey Cleary

Yes, exactly. They will be in series (sequentially). In some scenarios you'll want to call them in series, and others you'll want them concurrently, just depends on the situation.

It's funny you bring this up - my next post is covering this exact topic (concurrent vs. in series async calls). I'll be posting it early next week, but the short of it is that, if you want the async functions to execute concurrently, use Promise.all