面试题经常会有
<script>
console.log(1)
setTimeout(function(){
console.log(2)
})
console.log(3)
let p=new Promise((resolve,reject) =>{
console.log(4)
resloved('hhhhhh')
})
p.then(
res =>{
console.log(res)
console.log(5)
},
res =>{
console.log(7)
}
)
console.log(6)
</script>
宏任务:script(整体代码),setTimeout,UI渲染,VO,postMessage,MessageChannel,setlmmedate(node环境)
微任务:Promise, MultationObserver, proxess.nextTick(node环境)
执行顺序
1
3
4
6
hhhhhh
5
2文章来源:https://www.toymoban.com/news/detail-816936.html
注意: Promise ,一旦创建立即执行,打印7是迷惑项不会执行文章来源地址https://www.toymoban.com/news/detail-816936.html
到了这里,关于打印的前后顺序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!