1const [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
2
1// Call both functions
2const somePromise = someCall();
3const anotherPromise = anotherCall();
4
5// Await both promises
6const someResult = await somePromise;
7const anotherResult = await anotherPromise;
8