Skip to main content

Improve async code with Promise.all()

· One min read
Yongjoon Lee
Backend Engineer @ M2cloud

Javascript have very powerful asynchronous feature async/await that help us to write asynchronous code in a synchronous way so that we can easily understand the code.

However, If you don't pay attention to your code, it can perform inefficiently.