Javascript Array has(e)
Array.prototype.has = function(e) { for(var i = 0; i < this.length; i++) if((e.equals) ? e.equals(this[i]) : e === this[i]) return true; return false;//from w w w . j av a 2s . c om };