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.
var aI = 29938;
var a = [];
a[29938] = {id: 29938, name: 'name1'};
a[32994] = {id: 32994, name: 'name2'};
var oI = '29938';
var o = {};
o['29938'] = {id: 29938, name: 'name1'};
o['32994'] = {id: 32994, name: 'name2'};
var o2 = {};
o2['_29938'] = {id: 29938, name: 'name1'};
o2['_32994'] = {id: 32994, name: 'name2'};
var o3 = {};
for(var i = 29938; i <= 32994; i += 3056){
o3['_' + i] = { id: i, name: 'name' + i };
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Holey Array by Index |
| ready |
Object by Key |
| ready |
Object by Property |
| ready |
Object by Property |
| ready |
simple assignment |
| ready |
Just get aI |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.