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
speed comparissons between slice, splice, for, $.merge, Array
I'm only interested in homogeneous arrays.
I'm only interested in small arrays. Like cloning an array of listeners which is almost always 1 element.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
var a = ['h', 'f', 'o', '2', '3', 'i'];
var b = [];
if (b.length !== a.length) {
throw {
message: "Test failed! b.length !== a.length"
};
}
b[0].test = 'hi';
if (a[0].test === 'hi') {
// throw {message: "Not a deep clone"};
}
for (var i = 1, l = a.length; i < l; i++) {
if (b[i] !== a[i]) {
throw {
message: "Test failed! b array is " + b
};
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
slice |
| ready |
concat |
| ready |
for-unshift |
| ready |
for-push |
| ready |
for-index |
| ready |
while loop |
| ready |
slice(0) |
| ready |
a.concat() |
| ready |
Array |
| ready |
Map |
| ready |
Array.prototype.push.apply |
| ready |
Array.prototype.splice.apply |
| ready |
for-index [] |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.