findindex in array of objects code example
Example 1: find index of object in array javascript
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: js find index in list
let myList = ['foo', 'bar', 'qux'];
myList.indexOf('bar');
Example 3: findindex js
const array = [5, 12, 8, 130, 44];
const index = array.findIndex((item)=> item>10);
console.log(array[index]);
Example 4: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple");
Example 5: find the index of an object in an array
const letters = [{letter: 'a'},{letter: 'b'},{letter: 'c'}]
const index = letters.findIndex((element, index) => {
if (element.letter === 'b') {
return true
}
})