Promise.all() vs await multiple async functions

Reading Time: 3 minutes Let’s consider two approaches that look really similar and let’s see how they work behind the scenes and which is the most suggested one. Let’s determine the difference by inspecting how each of the two alternatives works. The first approach (sequential) Here, in an async context, we create an array literal. So, when the someFunction1 is called, a …