📌  相关文章
📜  仅当 'module' 选项设置为 'esnext' 或 'system' 并且 'target' 选项设置为 'es2017' 或更高版本时,才允许使用顶级 'await' 表达式. - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:49.277000             🧑  作者: Mango

代码示例1
(async () => {
    try {
        var text = await main();
        console.log(text);
    } catch (e) {
        // Deal with the fact the chain failed
    }
})();