✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Node.js
Чому код нижче втрачає паралелізм?
const users = await Promise.all([
await fetchUser(1),
await fetchUser(2),
await fetchUser(3),
]);