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


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大神的英文原創作品 Node.js console.timeLog() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。