Comment lancer plusieurs fonctions asynchrones dans le nœud js
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);
Tomer Mantzuri
let [someResult, anotherResult] = await Promise.all([someCall(), anotherCall()]);