📅  最后修改于: 2022-03-11 15:01:56.504000             🧑  作者: Mango
// You can't use await outside an async function. one trick to 'bypass' this limit is to use async IFEE:
const myAsyncFunction = async() => {
return await getValue()
};
// Bypass it as follows:
let value;
(async () => {
value = await myAsyncFunction()
})()