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
var cols = 20;
var rows = 10000;
var list = [];
var ri, ci, item;
for ( ri = 0 ; ri < rows ; ++ri ) {
list[ri] = [];
for ( ci = 0 ; ci < cols ; ++ci ) {
list[ri][ci] = {
state: 'normal',
alpha: 1.0
};
}
}
var container = {
onFadeItem: function(x) {
x.alpha = 0.5;
}
};
Ready to run.
Test | Ops/sec | |
---|---|---|
Update Via Function |
| ready |
Update Via State |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.