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

node js 获取程序执行时间 time timeEnd

时间:2020-01-31 00:49:35      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:控制台   index   node   function   code   输出   java   class   +=   

node js 获取程序执行时间 time timeEnd

示例代码:

function getFunRunTime(){
    console.time('test');
    let temp;
    for (let index = 0; index < 10000; index++) {
        temp += index
    }
    // time和timeEnd的参数要相同
    console.timeEnd('test');
}
getFunRunTime();

控制台输出:

test: 0.384765625ms

node js 获取程序执行时间 time timeEnd

标签:控制台   index   node   function   code   输出   java   class   +=   

原文地址:https://www.cnblogs.com/mengfangui/p/12244255.html

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