Node.js examples for Array:Array Operation
Clear an array with splice
Array.prototype.clear = function() { return this.splice(0, this.length); };