async/await、promise和setTimeout执行顺序

本文解析了面试中常遇到的JavaScript执行顺序问题,重点讲解了宏任务、微任务的区别,以及如何理解和应用async/await和Promise在异步编程中的角色,提供了一个记忆口诀帮助读者掌握这一概念。
摘要由CSDN通过智能技术生成

面试时遇到相关的执行顺序问题:

console.log(1)

async function async1() {

  console.log(8);

  await async2();

  console.log(9);

}

setTimeout(() => {

  console.log(2)

}, 0)

async function async2() {

  console.log(10);

}

async1()

new Promise((resolve, reject) => {

  resolve()

})

  .then(() => {

    console.log(3)

  })

  .then(() => {

    console.log(5)

  })

new Promise((resolve, reject) => {

  resolve()

})

  .then(() => {

    console.log(4)

  })

  .then(() => {

    console.log(6)

  })

console.log(7)

首先我们需要明确事件机制,宏任务微任务

宏任务:包括整体代码script(外层的同步代码),setTimeout,setInterval

微任务:Promise.then(非new Promise),process.nextTick(node中)

其次需要明确执行顺序

执行顺序是先执行同步任务,然后微任务,再执行宏任务。

(我自己总结了一个口诀:最外层的先打印,async的看使用,Promise 1 2 then ,setTimeout放最后,若有多个setTimeout,注意setTimeout的时间)(口诀看个人情况,理解记忆)

结果:aae4aa792dcee261a10df3cd5f473aca.png

欢迎补充,大家一起进步。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值