Answers for "javascript time execution"

4

javascript time execution

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.");
Posted by: Guest on March-29-2020

Code answers related to "javascript time execution"

Code answers related to "Javascript"

Browse Popular Code Answers by Language