📅  最后修改于: 2022-03-11 15:03:58.527000             🧑  作者: Mango
/* Promise */const promiseFunction = () => { ... return somePromiseFunction();}/* async/await */const asyncFunction = async () => { ... return await somePromiseFunction();}