object array has value javascript code example
Example 1: array has object with property js
myArray.some(obj => obj.property === 'value')
// returns true or false
Example 2: check object in array javascript
var obj = {a: 5};
var array = [obj, "string", 5]; // Must be same object
array.indexOf(obj) !== -1 // True