Javascript Array extend(other)

Description

Javascript Array extend(other)


Array.prototype.extend = function (other) {
    return Array.prototype.push.apply(this, other);
};



PreviousNext

Related