// Get javascript execution time in milliseconds. var t0 = performance.now(); doSomething(); var t1 = performance.now(); console.log("Call to doSomething took " + (t1 - t0) + " milliseconds.")
performance.now()
Get javascript execution time in milliseconds using performance.now()