js array find object by id code example
Example 1: js get object by id from array
myArray.find(x => x.id === '45');
Example 2: array find
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
Example 3: javascript get array object by id
myArray.find(x => x.id === '45').foo;
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));