check if element is in array of object js code example
Example 1: how to Check if an array contains an object in javascript
const myArrayObj = [{
'username': 'Player 1',
'email': '[email protected]'
}, {
'username': 'Player 2',
'email': '[email protected]'
}];
const isEqual = (first, second) => {
return JSON.stringify(first) === JSON.stringify(second);
}
const result = myArrayObj.some(e => isEqual(e, {
'username': 'Player 1',
'email': '[email protected]'
}));
console.log(result);
Example 2: check object in array javascript
var obj = {a: 5};
var array = [obj, "string", 5];
array.indexOf(obj) !== -1