js find object in array by id code example
Example 1: javascript find object by property in array
myObj = myArrayOfObjects.find(obj => obj.prop === 'something');
Example 2: how to find id in array javascript
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: search an array of objects with specific object property value
var result = jsObjects.find(obj => {
return obj.b === 6
});