Skip to content

Instantly share code, notes, and snippets.

@anshumanv
Last active December 13, 2017 12:56
Show Gist options
  • Save anshumanv/4bab1ac978bd729bbf055f35d9bcdeef to your computer and use it in GitHub Desktop.
Save anshumanv/4bab1ac978bd729bbf055f35d9bcdeef to your computer and use it in GitHub Desktop.
const timeTaken = (func,...args) => {
var t0 = performance.now(), r = func(...args);
console.log(performance.now() - t0);
return r;
}
// timeTaken(Math.pow, 2, 10) -> 1024 (0.010000000009313226 logged in console)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment