1 Star 0 Fork 0

癫疯丶歌谣/前端牛客网面试题刷题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
eventloop事件机制1230429(中).html 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
癫疯丶歌谣 提交于 2023-04-29 20:27 . 修改数据
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eventloop事件机制1230429中</title>
</head>
<body>
<script>
// setTimeout(function () { console.log(1) }, 0);
// new Promise(function (resolve, reject) {
// console.log(2);
// resolve();
// }).then(function () {
// console.log(3)
// }).then(function () { console.log(4) });
// process.nextTick(function () { console.log(5) });
// console.log(6);
//event loop事件机制
// setTimeout(function(){
// console.log(2)
// },0)
// console.log(1)
// 1 2
setTimeout(function(){
console.log(3)
},0)
Promise.resolve().then(function(){
console.log(2)
})
console.log(1)
//工作任务 macro-task micro-task
// macro-task a1 a2 a3
//micro-task b1 b2 b3
// a1 b1 b2 b3 a2 b1 b2 ....
//script(主程序代码)—>process.nextTick—>Promises...
//——>setTimeout——>setInterval——>setImmediate——> I/O——>UI rendering
//1 2 3
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/geyaoisgeyao/geyao.git
git@gitee.com:geyaoisgeyao/geyao.git
geyaoisgeyao
geyao
前端牛客网面试题刷题
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385