赞
踩
先甩一段代码到你脸上,来看看你的答案是什么?
来请开始你的表演,默默在自己的小本本上记下以下这段代码的输出答案。
// 说出下面代码的输出
async function async1() {
console.log('async1 start');
await async2();
console.log('async1 end');
}
async function async2() {
console.log('async2');
}
console.log('script start')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。