Answers for "how to search a list of objeccts in javascript"

18

how can search in object in array

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

return object list in find js

const inventory = [
  {name: 'apples', quantity: 2},
  {name: 'bananas', quantity: 0},
  {name: 'cherries', quantity: 5}
];

function isCherries(fruit) {
  return fruit.name === 'cherries' && fruit.name === 'bananas';
}

console.log(inventory.find(isCherries));
// { name: 'cherries', quantity: 5 }
Posted by: Guest on January-11-2021

Code answers related to "how to search a list of objeccts in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language