Node.js examples for Array:Clear
Clear array element
Array.prototype.clear = function() { while(this.length>0) { this.pop();//from w w w .ja v a 2s .c o m } };