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
$sets = [];
for (var i=0;i<6;++i){
var a = $sets[i] = [];
for (var j=0;j<6;++j) a[j]=j;
}
function lazyProduct1(arrays,callback,values){
if (!values) values=[];
var head = arrays[0], rest = arrays.slice(1), dive=rest.length>0;
for (var i=0,len=head.length;i<len;++i){
var moreValues = values.concat(head[i]);
if (dive) lazyProduct1(rest,callback,moreValues);
else callback.apply(this,moreValues);
}
}
function lazyProduct2(sets, holla) {
var setLength = sets.length;
function helper(array_current, set_index) {
if (++set_index >= setLength) {
holla.apply(null, array_current);
} else {
var array_next = sets[set_index];
for (var i=0; i<array_next.length; i++) {
helper(array_current.concat(array_next[i]), set_index);
}
}
}
helper([], -1);
}
function callback(){}
Ready to run.
Test | Ops/sec | |
---|---|---|
Phrogz |
| ready |
RobW |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.