I need to get execution time in milliseconds.
I originally asked this question back in 2008. The accepted answer then was to use
new Date().getTime()
However, we can all agree now that using the standardperformance.now()
API is more appropriate. I am therefore changing the accepted answer to this one.
var t0 = performance.now()
doSomething() // <---- The function you're measuring time for
var t1 = performance.now()
console.log("Call to doSomething took " + (t1 - t0) + " milliseconds.")
NodeJs
: it is required to import theperformance
class
console.time('someFunction')
someFunction() // Whatever is timed goes between the two "console.time"
console.timeEnd('someFunction')
Note: