Answers for "js get objects from array"

7

javascript find object in array

myArray.findIndex(x => x.id === '45');
Posted by: Guest on September-15-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
0

search an array of objects with specific object property value

var result = jsObjects.find(obj => {
  return obj.b === 6
})
Posted by: Guest on May-25-2020

Code answers related to "js get objects from array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language