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
Manual array lookups vs. holey arrays.
function makeid()
{
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 10; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
Benchmark.prototype.setup = function() {
var end = 1000,offset = 680;
var a1 = [],a2 = [],o={};
for(var i=0;i<end ;i++){
if(Math.random()>0.7) {
a1.push({id:i,name:makeid()});
a2[i]={id:i,name:makeid()};
o[""+i]={id:i,name:makeid()};
}
else {
a1.push({id:i,name:makeid(),otherprop:5});
a2[i]={id:i,name:makeid(),otherprop:5};
o[""+i]={id:i,name:makeid(),otherprop:5};
}
}
};
Ready to run.
Test | Ops/sec | |
---|---|---|
Manual Array Lookup |
| ready |
Holey Array by Index |
| ready |
Object by Key |
| ready |
Object by Indexed Key |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.