Answers for "array of objects check all values"

62

find an object in an array of objects javascript

let arr = [
    { name:"string 1", value:"this", other: "that" },
    { name:"string 2", value:"this", other: "that" }
];

let obj = arr.find(o => o.name === 'string 1');

console.log(obj);
Posted by: Guest on May-08-2020
0

Check propery of an objects array

const arrayOfObject = [{ id: 1, name: 'john' }, {id: 2, name: 'max'}];

const checkUsername = obj => obj.name === 'max';

console.log(arrayOfObject.some(checkUsername))
Posted by: Guest on November-26-2021

Code answers related to "array of objects check all values"

Code answers related to "Javascript"

Browse Popular Code Answers by Language