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 daily = [];
const end = new Date('2024-03-13');
for (const current = new Date('2000-12-31'); current < end; current.setUTCDate(current.getUTCDate() + 1)) {
const currentDateStr = current.toISOString().slice(0, 10);
daily.push({
period: currentDateStr,
start: currentDateStr,
end: currentDateStr,
});
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Array.filter |
| ready |
Generator |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.