如何检查执行javascript函数的时间?

时间:2014-06-11 14:20:46

标签: javascript time

我不知道该怎么做。 Javascript是单线程的,所以我不能同时运行函数和计时器。如何检查我的函数执行的时间?

1 个答案:

答案 0 :(得分:0)

您可以使用getTime()对象的Date方法。

var start = new Date().getTime();

for (var i = 0; i < 100000; ++i) {
    // work
}

var end = new Date().getTime();
var time = end - start;
console.log('Execution time: ' + time);

start是您的代码开始执行的时刻。 end是完成执行的时刻。如果你在这两个时刻之间做出改变,你就会得到它执行的时间。

另外,考虑到javascript中你可以将函数作为参数传递的事实,你可以这样做:

function profile(myCode) {
    var start = new Date().getTime(); //the moment when execution starts

    myCode(); //execute your code

    var end = new Date().getTime(); // the moment when execution finishes
    var time = end - start; // time it took
    console.log('Execution time: ' + time); // output the time to console
    return time; // return the time for further use
}