js耗时统计方法

背景

在前端性能排查的时候,需要在js代码中记录时间,并通过console输出耗时情况。

耗时统计方法

  • 开始位置记录时间

    1
    const startTime = new Date().getTime()
  • 结束位置记录输出耗时

    1
    console.log('耗时:' +  (new Date().getTime() - startTime) / 1000 + 's')

注意事项

由于js是默认是异步的,尤其要注意是否需要await或者在.then里面输出。