Here you can find the source of findFirst(fun)
Array.prototype.findFirst = function(fun) { for(var i = 0; i < this.length; i=i+1) { if(fun(this[i])) { return this[i]; }/*from w w w.j av a2s . c o m*/ } }
Array.prototype.findBySku = function(sku) { var result = null; this.forEach(function(elem, index) { if (elem.sku === sku) { result = elem; }) return result; }; ...
Array.prototype.findElement = function(predicate) { for (var i=0; i<this.length; ++i) { if (predicate(this[i])) { return this[i]; Array.prototype.contains = function(element) { return this.indexOf(element) != -1; ...
Array.prototype.findElement = function(search, func) { for(var i = 0; i < this.length; i++) { if(func(search, this[i])) return this[i]; return null;
Array.prototype.findElements = Array.prototype.findElements || function (config) { var i, j, key, keys = [], isFound, el = null, results = []; for (key in config) { ...
Array.prototype.findFirst = function(fnCheckCallback, parameter) { for (var elementIndex in this) { if (this.hasOwnProperty(elementIndex) && fnCheckCallback.apply(this[elementIndex], [elementIndex, parameter])) { return this[elementIndex]; };
Array.prototype.findFirst = function (test) { var i, item; for (i = 0; i < this.length; i++) { item = this[i]; if (test(item)) { return item; }; ...
Array.prototype.findHighestNumber = function(inField) var tmp = []; for (var i = 0; i < this.length; i++) { tmp[i] = Number(this[i][inField]); if(this.length < 1) return 0; return Math.max.apply(Math, tmp); ...
Array.prototype.findIdx = function(fn) { return this.indexOf(this.filter(val => fn(val))[0]); };
Array.prototype.findIfNotError = function(filter) { var result = this.find(filter); if ( !result ) { throw new Error(); return result;