check if array contains object javascript code example
Example 1: if object is array javascript
Array.isArray(object);
Example 2: 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 3: angular list contains property
vendors.filter(function(vendor){ return vendor.Name === "Magenic" })
Example 4: check if object is present in array javascript
function containsObject(obj, list) {
var i;
for (i = 0; i < list.length; i++) {
if (list[i] === obj) {
return true;
}
}
return false;
}
function containsObject(obj, list) {
var x;
for (x in list) {
if (list.hasOwnProperty(x) && list[x] === obj) {
return true;
}
}
return false;
}
Example 5: check object in array javascript
var obj = {a: 5};
var array = [obj, "string", 5];
array.indexOf(obj) !== -1
Example 6: 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`)
}