async 关键字放在函数声明之前,生成一个异步函数,保证函数的返回值为 promise
async function hello() { return "Hello" };
hello();
将 async 关键字加到函数申明中,可
2021-09-29