當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js console.timeLog()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Nodejs console.timeLog() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。