Nodejs Array Find Object findObject(value, key)

Here you can find the source of findObject(value, key)

Method Source Code

Array.prototype.findObject = function (value, key) {
  var found = -1;
  for (var i = 0; i < this.length; i++) {
    if (this[i][key] == value) {
      found = this[i];// w  ww.  j ava  2s .co  m
    }
  }
  return found;
};

Related

  1. findObject(value, key)
    Array.prototype.findObject = function (value, key) {
        var found = false;
        for (var i = 0; i < this.length; i++) {
            if (this[i][key] == value) {
                found = true;
        return found;
    };
    ...
    
  2. findObject(value, key)
    Array.prototype.findObject = function (value, key) {
        var my_obj = null;
        for (var i = 0; i < this.length; i++) {
            if (this[i][key] == value) {
                my_obj = this[i];
        return my_obj;
    };
    ...
    
  3. findObjectByName(nameOfObj)
    Array.prototype.findObjectByName = function (nameOfObj) {
      for(var i=0; i<this.length;i++ ){ 
          if(this[i].name==nameOfObj){
            return this[i];
      return null;