码迷,mamicode.com
首页 > 其他好文 > 详细

promise、async、await、settimeout异步原理与执行顺序

时间:2019-09-08 17:56:49      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:原理   pre   ISE   执行顺序   start   cti   async   timeout   nbsp   

一道经典的前端笔试题,你能一眼写出他们的执行结果吗?

       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‘);

 

promise、async、await、settimeout异步原理与执行顺序

标签:原理   pre   ISE   执行顺序   start   cti   async   timeout   nbsp   

原文地址:https://www.cnblogs.com/cristina-guan/p/11487403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!