问答题791/1530【Promise第29题】下面代码的输出是什么?

1async function async1() { 2 console.log("async1 start"); 3 await async2(); 4 console.log("async1 end"); 5} 6async function async2() { 7 setTimeout(() => { 8 console.log('timer') 9 }, 0) 10 console.log("async2"); 11} 12async1(); 13console.log("start") 14
难度:
2022-01-09 创建

赞赏支持

预览

题库维护不易,您的支持就是我们最大的动力!