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