Nodejs Array Get Object getItemFromID(id)

Here you can find the source of getItemFromID(id)

Method Source Code

Array.prototype.getItemFromID = function(id){
   for(var i = 0; i < this.length; i++){
      if(this[i].id == id){ return this[i]; }
   }//from  ww w .  j  av a 2  s.  c o m
}

Related

  1. getIndexByKey(name)
    Array.prototype.getIndexByKey = function(name) {
      for (var i = 0; i < this.length; i++) {
        if (this[i][name]) {
          return i;
      return -1;
    
  2. 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
    ...
    
  3. 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;
    ...
    
  4. getIndexFromID(id)
    Array.prototype.getIndexFromID = function(id){
      for(var i = 0; i < this.length; i++){
        if(this[i].id == id){ return i; }
    
  5. getItemByIndex( i )
    Array.prototype.getItemByIndex = function( i ) {
      me = this;
      return me[i];
    a = [ '11', '22', '33' ];
    a.getItemByIndex( 1 );
    
  6. getObjHasKey(key)
    Array.prototype.getObjHasKey=function(key){
        for (var i in this){
            if(this[i].hasOwnProperty(key)){
                return i
        return false
    
  7. 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;
    
  8. getObjectByKey(key, value)
    Array.prototype.getObjectByKey = function(key, value){
      var toReturn = null
      $.each(this, function(i, object){
        if(object[key] == value){
          toReturn = object
          return false
      })
      return toReturn
    ...
    
  9. getObjectKey(name, value)
    Array.prototype.getObjectKey = function(name, value) {
        var Obj = $.map(this, function(v, i) {
            return v[name] === value ? v : null;
        });
        return Obj[0];