方法说明:
完成时间,执行 console.time 到 console.timeEnd 之间所花费的时间。
语法:
复制代码 代码如下:
console.timeEnd(label)
接收参数:
Label 与开始时间 console.log 的 label 对应
例子:
复制代码 代码如下:
console.time('100-elements');
for (var i = 0; i < 100; 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);
};
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“node.js中的console.timeEnd方法使用说明”评论...