Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illvart/7fbaab1c3e03b3834d0e4a733073c3a9 to your computer and use it in GitHub Desktop.
Save illvart/7fbaab1c3e03b3834d0e4a733073c3a9 to your computer and use it in GitHub Desktop.
A quick JavaScript function performance test on the browser console
var i = performance.now();
yourFunction();
performance.now() - i;
//Or make a helper function, like this:
function performanceTest(testFunction, iterations) {
'use strict';
var sum = 0;
var start = performance.now();
for (var i = 0; i < iterations; i++) {
testFunction();
}
var time=performance.now() - start;
return time;
}
//And use it like this:
performanceTest(function(){
Math.random()*Math.random();
}, 1000);
//In NodeJS you would need to use process.hrtime() instead of performance.now() and it behaves a little differently.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment