js执行时间(调试)

Posted wifix

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js执行时间(调试)相关的知识,希望对你有一定的参考价值。

js 执行时间

function use_time(func) {
    var start = new Date().getTime(); console.log(start);
    
    func();

    var end = new Date().getTime(); console.log(end);        
    console.log(end-start+‘ ms‘);
}


2. console
console.log(console); _prototype

console.time(‘time a‘);
use_time(test);
console.timeEnd(‘time a‘);
// 输出 time a: 3.006ms  (更准确)

分析器
console.profile(‘性能分析器一‘);
Foo();
console.profileEnd();

以上是关于js执行时间(调试)的主要内容,如果未能解决你的问题,请参考以下文章

使用 Chrome 开发工具进行 JS 调试 [重复]

js调试工具及微博登录分析

Chrome调试,js正常运行,但找不到代码,无法调试

js调试

是否可以在 VS Code 终端中编译/执行/调试纯 JavaScript?

html js调试