Node.js examples for Array:Add Element
Adds the element to the array.
/**// w w w. jav a2 s . com * Adds the element to the array. * * @param element the element to add. * @return the index of the element. */ Array.prototype.add = function(element) { var newSize = this.push(element); return newSize-1; }