Array hat Objekt mit Eigenschaft JS
myArray.some(obj => obj.property === 'value')
// returns true or false
Captain CompileOnTheFirstTime
myArray.some(obj => obj.property === 'value')
// returns true or false
const magenicVendorExists = vendors.reduce((accumulator, vendor) => (accumulator||vendor.Name === "Magenic"), false);