Node.js examples for Array:Array Operation
Determines whether array is empty
Array.prototype.empty = function() { return this.length <= 0; }