jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
testArray = new Array(100);
for (var i = 0; i < 100; i++) {
testArray[i] = i;
}
map = function(array, mapFunction) {
var newArray = new Array(array.length);
for (var i = 0; i < array.length; i++) {
newArray[i] = mapFunction(array[i]);
}
return newArray;
}
double = function(x) {
return x * 2;
}
reverseMap = function(array, mapFunction) {
var newArray = new Array(array.length);
for (var i = array.length - 1; i >= 0; i--) {
newArray[i] = mapFunction(array[i]);
}
return newArray;
}
middleware = function(elem, index) {
double(elem);
return true;
}
middleware2 = function(elem) {
double(elem);
}
Ready to run.
Test | Ops/sec | |
---|---|---|
javascript map |
| ready |
jquery map |
| ready |
each |
| ready |
every |
| ready |
forEach |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.