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

1async function async1 () { 2 console.log('async1 start'); 3 await new Promise(resolve => { 4 console.log('promise1') 5 }) 6 console.log('async1 success'); 7 return 'async1 end' 8} 9console.log('srcipt start') 10async1().then(res => console.log(res)) 11console.log('srcipt end') 12
难度:
2022-01-09 创建

赞赏支持

预览

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