外观
禁止使用then属性
then
如果某个对象被定义为“可 thenable”,一旦在 await 表达式中意外使用,则可能会导致出现问题
async function example() { const foo = { unicorn: 1, then() {}, }; const { unicorn } = await foo; console.log("after"); //<- This will never execute }