美文网首页
事件循环

事件循环

作者: 易路先登 | 来源:发表于2021-11-20 09:03 被阅读0次
       ``` 
    

    console.log('start')
    setTimeout(()=>{//f1
    console.log("2")
    Promise.resolve().then(()=>{//f4
    console.log("3")
    })
    },0)
    new Promise(function(resolve,reject){
    console.log("4")
    setTimeout(function(){//f2
    console.log("5")
    resolve(6);
    },0)
    }).then(res => {//f3
    console.log("7");
    setTimeout(()=>{//f5
    console.log(res)
    },0)
    });
    // 从上往下逐行执行
    // 阻塞
    // 异步--->解决了阻塞
    // 书写困难(promise) 理解困难

        // 先执行同步  再执行异步
        // 执行  注册
        // [f1,f2]
        // start 4 2 3 5 7 6
        // []微任务
        // []宏任务
    

    相关文章

      网友评论

          本文标题:事件循环

          本文链接:https://www.haomeiwen.com/subject/nryytrtx.html