当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js console.timeLog()用法及代码示例


console.timeLog()方法是Nodejs中的内置函数,用于显示每次执行的时间。在循环中使用时,该函数被证明是有效的。

用法:

console.log([label][, ...data])

参数:此函数接受两个或多个参数。

返回值:此方法显示执行时间。

以下示例说明了Node.js中的console.timeLog()方法:



范例1:


// Node.js program to demonstrate the   
// console.timeLog() method
  
// Time started
console.time("executionTime");
for (let i = 0; i < 10; i++) {
  
    // Printing execution time for each
    console.timeLog("executionTime");
}

输出:

范例2:


// Node.js program to demonstrate the   
// console.timeLog() method
  
// Time started
console.time("totalExecutionTime");
  
// Time started
console.time("executionTime");
  
for (let i = 0; i < 10; i++) {
  
    // Printing execution time for each
    console.timeLog("executionTime");
}
  
// Printing total execution time
console.timeLog("totalExecutionTime");

输出:

参考: https://nodejs.org/api/console.html#console_console_timelog_label_data

相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Nodejs console.timeLog() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。