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
相关用法
- Node.js fs.fsyncSync()用法及代码示例
- Node.js process.nextTick()用法及代码示例
- Node.js x509.toLegacyObject()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM paint()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Nodejs console.timeLog() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。