Jak uruchomić kilka funkcji asynchronicznych w węźle JS
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);