码迷,mamicode.com
首页 > Web开发 > 详细

js async01

时间:2020-01-16 12:26:53      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:div   res   get   lin   ons   syn   turn   function   resolved   

function resolveAfter2Seconds() {
  return new Promise(resolve => {
    setTimeout(() => {
      resolve(‘resolved‘)
    }, 2000)
  })
}
async function asyncCall() {
  console.log(‘calling start at: ‘ + new Date().getSeconds())
  const result = await resolveAfter2Seconds()
  console.log(result + ‘ at: ‘ + new Date().getSeconds())
}
asyncCall()

//

calling start at: 48
resolved at: 50

js async01

标签:div   res   get   lin   ons   syn   turn   function   resolved   

原文地址:https://www.cnblogs.com/anch/p/12200394.html

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