includes in object javascript code example

Example 1: javascript check if value exists in array of objects

var arr = [{ id: 1, name: 'JOHN' }, 
  { id: 2, name: 'JENNIE'}, 
  { id: 3, name: 'JENNAH' }];

function userExists(name) {
  return arr.some(function(el) {
    return el.name === name;
  }); 
}

console.log(userExists('JOHN')); // true
console.log(userExists('JUMBO')); // false

Example 2: js does object contain value

// You can turn the values of an Object into an array.
// Then test that a value is present:

// This assumes, that the Object is not nested
// and the value is an exact match:

var obj = { a: 'test1', b: 'test2' };

// Note that an array can only have positive index's; so
// checking for a negative index is a super valid way for getting a
// boolean value as a result for the check.
if (Object.values(obj).indexOf('test1') > -1) {
   console.log('Value exists!');
}

Example 3: angular list contains property

vendors.filter(function(vendor){ return vendor.Name === "Magenic" })

Example 4: javascript object includes

const person = {
  first_name: "Sam",
  last_name: "Bradley"
};

Object.values(person).includes("Bradley");

Example 5: javascript array contains object

// Works in all browsers
if (array.index(object) !== -1) {
  console.log(`my object is in my array`)
}

// ES7 :
if(array.includes(oject)) {
  console.log(`my object is in my array`)
}