Here you can find the source of contains( func)
Array.prototype.contains = function( func) { if( $.isFunction(func) ) { for( var i=0; i<this.length; i++ ) { var item = this[i]; if( func(item) == true ) { return true; }//from w w w . ja v a2 s. c o m } return false; } else { console.log("Please pass a function when using find","Error"); } };
Array.prototype.contain = function(arg){ var i=0; var arrSize = this.length; for(i=0;i<arrSize;i++){ if(this[i] == arg){ return true; return false; ...
Array.prototype.contain = function(obj){ for(var i=0;i<this.length;i++){ if(this[i]==obj){ return true; return false; };
Array.prototype.contains = function ( needle ) { for (i in this) { if (this[i] == needle) return true; return false;
Array.prototype.contains = function ( needle ) { for (i in this) { if (this[i] == needle) return true; return false;
Array.prototype.contains = function ( needle ) { for (i in this) { if (this[i] === needle) return true; return false;
Array.prototype.contains = function( v ) { for ( var i = 0, l = this.length; i < l; i++ ) { if ( this[ i ] === v ) return true; return false;