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
function current(fn, a, b) {
var rv = [];
var idx = 0;
var len = Math.min(a.length, b.length);
while (idx < len) {
rv[idx] = fn(a[idx], b[idx]);
idx += 1;
}
return rv;
}
function next(fn, a, b) {
var len = Math.min(a.length, b.length);
var rv = Array(len);
var idx = 0;
while (idx < len) {
rv[idx] = fn(a[idx], b[idx]);
idx += 1;
}
return rv;
}
const arr1 = Array(10000).fill(undefined).map((_, i) => i);
const arr2 = Array(10000).fill(undefined).map((_, i) => i);
Ready to run.
Test | Ops/sec | |
---|---|---|
Current |
| ready |
Next |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.