Here you can find the source of arrayContains(find)
Array.prototype.arrayContains = function(find){ for (item in this) { if(this.hasOwnProperty(item)) { var pattern = new RegExp(String(this[item]).trim(), 'gi'); if (find.search(pattern) != -1) return true; }//w w w. ja va 2s . com } return false; }
Array.prototype.find = function(value) for (var i = 0; i < this.length; i++) if (this[i] === value) return i; return false; function log(msg) console.log(msg);
Array.prototype.find = function (value) { var found = -1; for (var i = 0; i < this.length; i++) { if (this[i] == value) { found = i; return found; }; ...
function find(what, where) for(var i=0; i<where.length;i++) if(where[i] == what) return i; return -1; function NumCompare(a,b) ...
Array.prototype.findAll = function( func ) { if( $.isFunction(func) ) { var _arr = []; for( var i=0; i<this.length; i++ ) { var item = this[i]; if( func(item) == true ) { _arr.push(item); return _arr; else { console.log("Please pass a function when using findAll","Error"); };
Array.prototype.findAll = function() var results = []; this.each(function(value, index) if(iterator.call(context, value, index, this)) results.push(value); }, this); return results; ...
Array.prototype.findAndRemove = function (value) { for (var i = 0; i < this.length; i++) { if (this[i] == value) { this.splice(i, 1); };
Array.prototype.findAndRemoveObject = function (value, key) { for (var i = 0; i < this.length; i++) { if (this[i] && this[i][key] == value) { this.splice(i, 1); };
Array.prototype.findBy = function (field, value) { return this.filter(function (i) { return i[field] === value; })[0]; };
Array.prototype.findByField = function(field,value) for(var t=0; t<this.length; t++) { if(this[t][field] == value) return t; return null; };