performance.now() 返回毫秒。
// 记录要执行js的开始时间。
const t0 = performance.now();
for(let a = 0; a < 10000; a ++){
}
// 记录执行完js的结束时间。
const t1 = performance.now();
console.log(t1 - t0,'毫秒');
performance.now() 返回毫秒。
// 记录要执行js的开始时间。
const t0 = performance.now();
for(let a = 0; a < 10000; a ++){
}
// 记录执行完js的结束时间。
const t1 = performance.now();
console.log(t1 - t0,'毫秒');
本文标题:计算js的执行时间
本文链接:https://www.haomeiwen.com/subject/vuhzkktx.html
网友评论