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