node.js中的console.time方法使用说明

2020-06-17 06:52:54易采站长站整理

方法说明:

开始时间,与console.timeEnd对应,记录时间段。

语法:


console.time(label)

接收参数:

Label             与开始时间 console.log 的 label 对应

例子:


console.time(‘100-elements’);
for (var i = 0; i < 100; i++) {
  ;
}
console.timeEnd(‘100-elements’);

源码:


Console.prototype.time = function(label) {
  this._times[label] = Date.now();
};