Dexlux 发表于 2021-7-15 21:38

【promise】面试题

本帖最后由 Dexlux 于 2021-7-15 22:55 编辑

<script>
      setTimeout(() => {
      console.log("0")
      }, 0)
      new Promise((resolve,reject)=>{
      console.log("1")
      resolve()
      }).then(()=>{      
      console.log("2")
      new Promise((resolve,reject)=>{
          console.log("3")
          resolve()
      }).then(()=>{      
          console.log("4")
      }).then(()=>{      
          console.log("5")
      })
      }).then(()=>{
      console.log("6")
      })
   
      new Promise((resolve,reject)=>{
      console.log("7")
      resolve()
      }).then(()=>{         
      console.log("8")
      })
    </script>

三滑稽甲苯 发表于 2021-7-15 21:49

不苦小和尚 发表于 2021-7-16 07:00

微任务和宏任务

Dexlux 发表于 2021-7-16 13:37

不苦小和尚 发表于 2021-7-16 07:00
微任务和宏任务

对的没错
页: [1]
查看完整版本: 【promise】面试题