Node.js examples for Array:Insert
Insert element to array at position
Array.prototype.insertAt = function(index, item) { this.splice(index, 0, item);//from w w w. jav a 2 s .c o m return this; };