cara meluncurkan beberapa fungsi async di node js

let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri