javascript check if array contains object with property value code example
Example 1: array has object with property js
myArray.some(obj => obj.property === 'value')
Example 2: angular list contains property
vendors.filter(function(vendor){ return vendor.Name === "Magenic" })
Example 3: javascript array contains object
if (array.index(object) !== -1) {
console.log(`my object is in my array`)
}
if(array.includes(oject)) {
console.log(`my object is in my array`)
}
Example 4: check if property has value in array javascript
const magenicVendorExists = vendors.reduce((accumulator, vendor) => (accumulator||vendor.Name === "Magenic"), false);