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
const len = 10;
const arr = [...Array(len).keys()];
const farr1 = arr.map(i => (n) => n + i);
const farr2 = arr.slice(0, -1).map(i => (n) => n + i);
farr2.push((n) => n + len - 1);
const farr3 = [];
for (let i = 0; i< arr.length; i++) {
farr3[i] = (n) => n + i;
}
const fc = (arr) => (n) => {
let r = n;
for (let i = 0; i < arr.length; i++) {
r = arr[i](r);
}
return r;
}
const curr = arr.reduce((f, e, i) => {
if (i === 0) {
return (n) => n + e
}
return (n) => f(n) + e
}, undefined);
const f1 = fc(farr1)
const f2 = fc(farr2);
const f3 = fc(farr3);
Ready to run.
Test | Ops/sec | |
---|---|---|
map |
| ready |
map + push |
| ready |
for |
| ready |
recursion |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.