javascript array findOne code example

Example 1: javascript find object in array

myArray.findIndex(x => x.id === '45');

Example 2: js find element in array by property

var result = jsObjects.find(obj => {
  return obj.b === 6
})

Example 3: array find

const array1 = [5, 12, 8, 130, 44];

const found = array1.find(element => element > 10);

console.log(found);
// expected output: 12

Example 4: typescript array find

const array1 = [5, 12, 8, 130, 44];

const found = array1.find(element => element > 10);

console.log(found);
// expected output: 12

Tags:

Java Example