vote up 5 vote down star
2

I need to get time in milliseconds. Please advise.

flag

50% accept rate

4 Answers

vote up 10 vote down check

use Date().getTime()

The getTime() method returns the number of milliseconds since midnight of January 1, 1970.

ex.

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

for (i = 0; i < 50000; ++i) {
// do something
}

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

alternatively, getMilliseconds() will give the milliseconds of the current Date object.

link|flag
works for me. Cheers. – Jangwenyi Nov 24 '08 at 11:38
1  
Note that you can substitute +new Date() for the getTime() call: var start = +new Date(); // do stuff alert("Execution time: "+(+new Date())-start); – J c Nov 24 '08 at 13:00
vote up 6 vote down

Use Firebug, enable both Console and Javascript. Click Profile. Reload. Click Profile again. View the report.

link|flag
Good advice but obviously works only for FF. We often want to compare browser speeds... :-) – PhiLho Nov 24 '08 at 11:27
vote up 6 vote down

Be aware that the results from new Date().getTime() may not give you milliseconds precision.

Take a look at this

link|flag
vote up 1 vote down

You can use console.time: (only with firebug+firefox)

console.time('someFunction timer');

function someFunction(){ ... }

console.timeEnd('someFunction timer')
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.