Last active
November 8, 2019 08:02
-
-
Save AllThingsSmitty/9beb83a3007700efe63e to your computer and use it in GitHub Desktop.
A quick JavaScript function performance test on the browser console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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