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
<script>
function push() {
var x = [];
x.push.apply(x, arguments);
return x;
}
function unshift() {
var x = [];
x.unshift.apply(x, arguments);
return x;
}
function _callPush(args) {
var x = [];
x.push.apply(x, args);
return x;
}
function callPush() {
return _callPush(arguments);
}
function _callUnshift(args) {
var x = [];
x.unshift.apply(x, args);
return x;
}
function callUnshift(args) {
return _callUnshift(arguments);
}
var bigArray = ((new Array(1000)).join("a,") + "a").split(",");
unshift.apply(null, bigArray).length === bigArray.length || alert('unshift broken');
push.apply(null, bigArray).length === bigArray.length || alert('push broken');
callPush.apply(null, bigArray).length === bigArray.length || alert('callPush broken');
callUnshift.apply(null, bigArray).length === bigArray.length || alert('callUnshift broken');
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Push |
| ready |
Push w/fn call |
| ready |
Unshift |
| ready |
Unshift w/fn call |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.