(自用面试题)宏任务和微任务分别有哪些?

181 阅读1分钟

常见宏任务

  • DOM事件
  • 定时器:setTimeout()、setInterval()
  • Ajax

常见微任务

  • Promise
  • async、await