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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。