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 maintest(a, b, c, d, e, f) {
return a + b + c + d + e + f;
}
function builtin() {
return maintest.apply(null, arguments);
}
function createArray() {
var args = new Array(arguments.length),
i;
for (i = 0; i < arguments.length; i++) {
args[i] = arguments[i];
}
return maintest.apply(null, arguments);
}
function useSpread(...args) {
return maintest(...args);
}
function spreadBuiltin() {
return maintest(...arguments);
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Builtin arguments |
| ready |
Create array |
| ready |
Use spread |
| ready |
Spread builtin arguments |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.