js get object from array of objects code example
Example 1: javascript find object in array
myArray.findIndex(x => x.id === '45');
Example 2: how to get array from object in javascript
let result = objArray.map(({ foo }) => foo)
Example 3: find an object from array of objects javascript
function getByValue2(arr, value) {
var result = arr.filter(function(o){return o.b == value;} );
return result? result[0] : null;
}
Example 4: 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));