js计算代码运行时间
js计算代码运行时间。
利用 performance
计时
1 | const START_TIME = performance.now(); |
利用 console.time
计时
1 | console.time('timer_name'); |
手写计时器
1 | const START_TIME = new Date(); |
js计算代码运行时间。
performance
计时1 | const START_TIME = performance.now(); |
console.time
计时1 | console.time('timer_name'); |
1 | const START_TIME = new Date(); |