Array extending: push vs concat (v12)

Revision 12 of this benchmark created on


Description

Compares techniques for extending an array with another array.

See http://stackoverflow.com/questions/1374126/how-to-append-an-array-to-an-existing-javascript-array

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/dojo/1/dojo/dojo.xd.js"></script>
<script>
/**
 * extend an array with another array. See http://stackoverflow.com/a/1374131/1280629
 **/
Array.prototype.extend_push_apply = function(array) {
    this.push.apply(this, array)
}

Array.prototype.extend_for_loop = function(array) {
    for (var i = 0, len = array.length; i < len; ++i) {
        this.push(array[i]);
    };    
}
Array.prototype.extend_jquery = function(array){
var self = this;
    $.each(array, function( index, value ) {
self.push(value);
});
}


Array.prototype.extend_forEach = function (array) {
    array.forEach(function(x) {this.push(x)}, this);    
}


Array.prototype.extend_dojo = function (array) {
    dojo.forEach(array, function(x) {this.push(x)}, this);    
}

Array.prototype.extend_splice = function (array) {
    array.unshift(array.length)
    array.unshift(this.length)
    Array.prototype.splice.apply(this,array) 
    array.shift() // restore b
    array.shift() //
}
</script>

Setup

var short_array = [];
    short_array.length = 150050;
    for(var i = 0; i < 150050; ++i)
       short_array[i] = i;
    var array_to_extend = [];
    for(var i = 0; i < 1000; ++i)
       array_to_extend[i] = i;

Test runner

Ready to run.

Testing in
TestOps/sec
Extend via push apply
array_to_extend.extend_push_apply(short_array);
ready
Extend via splice
array_to_extend.extend_splice(short_array);
ready
Extend via push for loop
array_to_extend.extend_for_loop(short_array);
ready
Extend via push forEach
array_to_extend.extend_forEach(short_array);
ready
Dojo
array_to_extend.extend_dojo(short_array);
ready
jQuery
array_to_extend.extend_jquery(short_array)
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.