Node.js examples for Array:Array Operation
Clone an array with slice
Array.prototype.clone = function() { return this.slice(0); };