Answers for "get function calling time"

1

get function calling time

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 May-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language