Await Multiple Promises Concurrently with Promise.all()

Share this video with your friends

Send Tweet

Oftentimes, you want to kick off multiple promises in parallel rather than awaiting them in sequence. This lesson explains how that can be achieved in a readable manner using await, the Promise.all() method, and destructuring assignment.

Rolando Barbella
Rolando Barbella
~ 7 years ago

Hey, really nice series, thanks. So, what you think would be the main difference between using async await and generators?

Marius Schulz
Marius Schulz(instructor)
~ 7 years ago

Generators offer additional flexibility. The async and await keywords offer syntactic sugar for simple awaits, but with yield and generators, you get more fine-grained control over when and how to pause and resume a function.