Node.js examples for Array:Add Element
Extends the Array object, creating a "addItem" method on it.
Array.prototype.addItem = function( item ) { var i = this.length ; this[ i ] = item ;// w w w . j a v a 2s. co m return i ; }