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 console.timeLog()用法及代碼示例
- Node.js console.time()用法及代碼示例
- Node.js console.timeEnd()用法及代碼示例
- Node.js console.timeStamp()用法及代碼示例
- Node.js console.table()用法及代碼示例
- Node.js console.trace()用法及代碼示例
- Node.js console.clear()用法及代碼示例
- Node.js console.log()用法及代碼示例
- Node.js console.error()用法及代碼示例
- Node.js console.warn()用法及代碼示例
- Node.js console.debug()用法及代碼示例
- Node.js console.info()用法及代碼示例
- Node.js console.count()用法及代碼示例
- Node.js console.assert()用法及代碼示例
- Node.js console.countReset()用法及代碼示例
- Node.js console.profile()用法及代碼示例
- Node.js console.profileEnd()用法及代碼示例
- Node.js console.groupEnd()用法及代碼示例
- Node.js console.group()用法及代碼示例
- Node.js console.groupCollapsed()用法及代碼示例
- Node.js console.dirxml()用法及代碼示例
- Node.js console.dir()用法及代碼示例
- Node.js console.profile([label])用法及代碼示例
- Node.js crypto.createDiffieHellman()用法及代碼示例
- Node.js crypto.createSign()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Node.js console.timeLog() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。