Here you can find the source of indexByAction(predicate)
Array.prototype.indexByAction = function(predicate){ for (var i = 0; i < this.length; i++) { if (predicate( this[i])) return i; };// w w w. java 2 s. c o m return -1; }
Array.prototype.indexByKey = function(keyName) { return this.reduce( (obj, el) => { obj[ el[keyName] ] = el; return obj; }, {}); };
Array.prototype.indexContains = function(word) { for (var idx = 0; idx < this.length; idx++) { var test = this[idx]; if (test.indexOf(word) >= 0 || word.indexOf(test) >= 0) { return idx; return -1; }; ...
Array.prototype.indexFor = function( item ) { var output=-1; for (var i = 0 ; i < this.length ; i ++) { if (this[i]===item) { output= i; break; return output; ...
"use strict"; Array.prototype.indexOf || (Array.prototype.indexOf=function indexOf(searchElement) { var array = this, length = array.length, index = 0; for (index = 0; index < length; ++index) { if (array[index] === searchElement) { return index; return -1; });