加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2_Ce试.js 590 Bytes
一键复制 编辑 原始数据 按行查看 历史
码仔阿杰 提交于 2021-12-10 21:49 . 同步面试题
function func(num) {
return function () {
console.log(num)
}
}
setTimeout(func(1))
async function async3() {
await async4()
console.log(8)
}
async function async4() {
console.log(5)
}
async3()
function func2() {
console.log(2)
async function async1() {
await async2()
console.log(9)
}
async function async2() {
console.log(5)
}
async1()
setTimeout(func(4))
}
setTimeout(func2)
setTimeout(func(3))
new Promise(resolve => {
console.log('Promise')
resolve()
})
.then(() => console.log(6))
.then(() => console.log(7))
console.log(0)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化