typescript find in array of objects code example
Example 1: javascript find object in array
myArray.findIndex(x => x.id === '45');
Example 2: typescript array find
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
// expected output: 12