Node.js examples for Array:Array Operation
Push all to Array
Array.prototype.push_all = function(array) { for (var index in array) { this.push(array[index]);//www . jav a 2 s . com } }