美文网首页
宏任务、微任务

宏任务、微任务

作者: cb12hx | 来源:发表于2019-02-07 11:28 被阅读0次
    async function async1() {
        console.log("async1 start");
        await async2();
        console.log("async1 end");
    }
    
    async function async2() {
        console.log("async2");
    }
    
    console.log("script start");
    
    setTimeout(function() {
        console.log("setTimeout");
    }, 0);
    
    async1();
    
    new Promise(function(resolve) {
        console.log("promise1");
        resolve();
    }).then(function() {
        console.log("promise2");
    });
    
    console.log("script end");
    

    相关文章

      网友评论

          本文标题:宏任务、微任务

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