1 Star 0 Fork 0

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
eventloop事件机制1230429(下).html 995 Bytes
一键复制 编辑 原始数据 按行查看 历史
癫疯丶歌谣 提交于 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); //1
// resolve();
setTimeout(function(){resolve()},0)
}).then(function () {
console.log(3)
}).then(function () { console.log(4) });
process.nextTick(function () { console.log(5) });
console.log(6); //2
//script(主程序代码)—>process.nextTick—>Promises...
//——>setTimeout——>setInterval——>setImmediate——> I/O——>UI rendering
// 2 6 5 3 4 1
// 2 6 5 1 3 4
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/geyaoisgeyao/geyao.git
git@gitee.com:geyaoisgeyao/geyao.git
geyaoisgeyao
geyao
前端牛客网面试题刷题
master

搜索帮助