下列程序的运行结果是什么?console.log(1)new ...
发布于 2022-03-02 16:49:52
下列程序的运行结果是什么?
console.log(1)
new Promise(function (resolve, reject){
reject()
resolve()
}).then(function(){
console.log(2)
}, function(){
console.log(3)
})
console.log(4)
登录后免费查看答案
关注者
0
被浏览
96