Nodejs Utililty Methods Array Index

List of utility methods to do Array Index

Description

The list of methods to do Array Index are organized into topic(s).

Method

indexOf(val)
Array.prototype.indexOf = function(val) {
  for(var i = 0; i < this.length; i++) {
    if (this[i] == val) return i;
  return -1;
};
indexOf(val)
Array.prototype.indexOf = function(val){
  var arrayVal = this;
  for(var i = 0 ; i < arrayVal.length; i++){
    if(arrayVal[i] == val){
      return 4;
  return -1;
indexOf(val)
Array.prototype.indexOf = function(val) {
    for (let i = 0; i < this.length; i++) {
        if (this[i] == val) return i;
    return -1;
};
indexOf(value)
Array.prototype.indexOf = function(value) {
  for (var i = 0; i < this.length; i++) {
    if (this[i] == value) {
      return index = i;
  return -1;
};
indexOf(value)
Array.prototype.indexOf = function(value) {
    for (var i = 0; i < this.length; i++) {
        if (this[i] === value) {
            return i;
indexOf(value)
Array.prototype.indexOf = function (value) {  
  for(var i=0; i<this.length; i++) {
    if(this[i] === value) {
      return i;
  return -1;
indexOf(value, begin, strict)
Array.prototype.indexOf = function(value, begin, strict)
  for(var i = +begin || 0; i < this.length; i++)
    if(this[i] === value || strict && this[i] == value)
      return i;
  return -1;
};
indexOf(what, i)
Array.prototype.indexOf = function(what, i) {
        i = i || 0;
        var L = this.length;
        while (i < L) {
            if(this[i] === what) return i;
            ++i;
        return -1;
    };
...
index(val)
Array.prototype.index = function(val) {
  for(var i = 0, l = this.length; i < l; i++) {
    if(this[i] == val) return i;
  return null;
};
index(val)
"use strict";
Array.prototype.index = function(val) {
  for(var i = 0, l = this.length; i < l; i++) {
    if(this[i] == val) return i;
  return null;
};