判断题

async function f(){throw new Error(’出错了’);}f().then(v=>console.log(v),e=>console.log(e))//输出Error:出错了。

【参考答案】

正确