Node.js examples for Array:Clear
Clear array to remove all elements
Array.prototype.clear = function() { return this.splice(0,this.length); };