Answers for "searching through an array of objects for an id"

18

find in 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

Search array of objects for existing value

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 October-11-2021

Code answers related to "searching through an array of objects for an id"

Code answers related to "Javascript"

Browse Popular Code Answers by Language