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
let x = -1;
const thing = {
read() {
++x;
if (x !== 10) {
return Promise.resolve(x);
}
return null;
},
};
async function* generate() {
while (true) {
const val = await thing.read();
if (val !== null) yield val;
break;
}
}
async function recurse(returns = []) {
const val = await thing.read();
if (val !== null) {
returns.push(val);
return recurse(returns);
}
return returns;
}
Ready to run.
Test | Ops/sec | |
---|---|---|
AsyncGenerators |
| ready |
Recursion |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.