方法說明:
完成時間,執行 console.time 到 console.timeEnd 之間所花費的時間。
文法:
console.timeEnd(label)
接收參數:
Label 對應於開始時間 console.log 的 label 對應
範例:
console.time('100-elements');
for (var i = 0; i
;
}
console.timeEnd('100-elements');
原始碼:
Console.prototype.timeEnd = function(label) {
var time = this._times[label];
if (!time) {
throw new Error('No such label: ' label);
}
var duration = Date.now() - time;
this.log('%s: %dms', label, duration);
};