DEV Community

Discussion on: Explain Async/Await Like I'm Five

Collapse
 
sebbdk profile image
Sebastian Vargr • Edited

Async/Await is syntactic sugar around promises.

So think of them like the same thing.

The two can also be used intertwined, E.g. one might use Promise.all to wait for two async functions to return in parallel.