input search value of array of objects javascript code example
Example 1: search for a value in an array of objects javascript and get its index
a = [
{prop1:"abc",prop2:"qwe"},
{prop1:"bnmb",prop2:"yutu"},
{prop1:"zxvz",prop2:"qwrq"}];
index = a.findIndex(x => x.prop2 ==="yutu");
console.log(index);
Example 2: search an array of objects with specific object property value
var result = jsObjects.find(obj => {
return obj.b === 6
})