.includes on array of obj 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'));
console.log(userExists('JUMBO'));
Example 2: 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);