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 TEST_SIZE = 10_000;
const syms = Array.from({length: TEST_SIZE}, (_, ix) => Symbol())
const fnps = Array.from({length: TEST_SIZE}, (_, ix) => function (a) { return a; })
const samples = Array.from({length: Math.trunc(TEST_SIZE / 10)}, (_, ix) => Math.trunc(ix * 10))
Ready to run.
Test | Ops/sec | |
---|---|---|
Function Comparison |
| ready |
Symbol Comparison |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.