Node.js examples for Array:Add Element
Add Array.push if needed
if(Array.prototype.push == null){ Array.prototype.push = function(item) { this[this.length] = item; return this.length; } }