Javascript Array pushAll(array)

Description

Javascript Array pushAll(array)


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



PreviousNext

Related