how to get array element index code example
Example 1: index of value in array
var imageList = [
{value: 100},
{value: 200},
{value: 300},
{value: 400},
{value: 500}
];
var index = imageList.findIndex(img => img.value === 200);
Example 2: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple");
Example 3: get the location of an item in an array
console.log(scores.indexOf(10));
console.log(scores.indexOf(30));
console.log(scores.indexOf(50));
console.log(scores.indexOf(20));