Node.js console.timeEnd() 方法
console.timeEnd() 方法是 Node.js 的控制台类。此方法停止之前使用console.time()方法启动的计时器,并使用 stdout 显示结果。
句法:
console.timeEnd( label )
参数:此方法接受一个保存字符串值的参数标签。如果未传递标签,即标签的值是默认值,则它会自动提供给该方法。对于不同的功能或代码段,标签可以不同。
返回值:该方法显示标签和一段代码所用的时间。
下面的示例说明了 Node.js 中的console.timeEnd() 方法:
示例 1:
// Node.js program to demonstrate the
// console.timeEnd() method
// Sample function
function addCount() {
var sum = 0; // Variable declaration
for (var i = 1; i < 100000; i++) {
sum += i; // Adding i to the sum variable
}
return sum; // Return sum value
}
// Starts the timer, here default label is used
console.time();
addCount(); // function call
// Ends the timer and print the time
// taken by the piece of code
console.timeEnd();
输出:
default: 7.517ms
示例 2:
// Node.js program to demonstrate the
// console.timeEnd() method
// Sample function
function addCount() {
var sum = 0; // Variable declaration
for (var i = 1; i < 100000; i++) {
sum += i; // Adding i to the sum variable
}
return sum; // Return sum value
}
var timetaken = "Time taken by addCount function";
// Starts the timer, the label value is timetaken
console.time(timetaken);
addCount(); // function call
// Ends the timer and print the time
// taken by the piece of code
console.timeEnd(timetaken);
输出:
Time taken by addCount function: 8.972ms
参考: https://nodejs.org/docs/latest-v11.x/api/console.html#console_console_timeend_label