Nodejs Array Get Object getIndexFromID(id)

Here you can find the source of getIndexFromID(id)

Method Source Code

Array.prototype.getIndexFromID = function(id){
   for(var i = 0; i < this.length; i++){
      if(this[i].id == id){ return i; }
   }// w  w w  . j a v  a 2  s  .co  m
}

Related

  1. getIndexBy(name, value)
    Array.prototype.getIndexBy = function(name, value) {
      for (var i = 0; i < this.length; i++) {
        if (this[i][name] == value) {
          return i;
      return -1;
    
  2. getIndexBy(name, value)
    angular
        .module('app', [
            'angular.filter',
            'ui.router',
            'ngAnimate',
            'ngMaterial',
            'user',
            'login',
            'register',
    ...
    
  3. getIndexByKey(name)
    Array.prototype.getIndexByKey = function(name) {
      for (var i = 0; i < this.length; i++) {
        if (this[i][name]) {
          return i;
      return -1;
    
  4. getIndexByVal(key,val)
    Array.prototype.getIndexByVal=function(key,val){
        for (var i in this){
            if(this[i].hasOwnProperty(key)){
                if(this[i][key]===val){
                    return i
        return false
    ...
    
  5. getIndexByValue(value)
    Array.prototype.getIndexByValue = function (value) {
        var index = -1;
        for (var i = 0; i < this.length; i++) {
            if (this[i] == value) {
                index = i;
                break;
        return index;
    ...
    
  6. getItemByIndex( i )
    Array.prototype.getItemByIndex = function( i ) {
      me = this;
      return me[i];
    a = [ '11', '22', '33' ];
    a.getItemByIndex( 1 );
    
  7. getItemFromID(id)
    Array.prototype.getItemFromID = function(id){
      for(var i = 0; i < this.length; i++){
        if(this[i].id == id){ return this[i]; }
    
  8. getObjHasKey(key)
    Array.prototype.getObjHasKey=function(key){
        for (var i in this){
            if(this[i].hasOwnProperty(key)){
                return i
        return false
    
  9. getObjectBy(field, withValue)
    Array.prototype.getObjectBy = function(field, withValue)
      for (var i = 0; i < this.length; i++) {
        if(this[i][field] == withValue)
          return this[i];
      return null;