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