obj array javascript find first match code example
Example 1: find in array of objects javascript
let arr = [
{ name:"string 1", value:"this", other: "that" },
{ name:"string 2", value:"this", other: "that" }
];
let obj = arr.find(o => o.name === 'string 1');
console.log(obj);
Example 2: find in js
The first element that will be found by that function
const f = array1.find(e => e > 10);