📅  最后修改于: 2022-03-11 14:55:01.405000             🧑  作者: Mango
// Call both functions
const somePromise = someCall();
const anotherPromise = anotherCall();
// Await both promises
const someResult = await somePromise;
const anotherResult = await anotherPromise;