Node.js examples for Array:Array Operation
Is array matching any predicate
Array.prototype.any = function(delegate) { for (var i=0; i < this.length; i++) { if (delegate.apply(this, [this[i]]) === true) { return true; }//from www . j a v a2 s . c om } return false; };