async
async 变体 (async(异步) 函数总是返回 Promises )// 异步函数声明
async function foo() {}
// 异步函数表达式
const foo = async func
2021-10-18