m039
0
Q:

index of value in array

var list = ["apple","banana","orange"]

var index_of_apple = list.indexOf("apple") // 0
8
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple"); // Returns 2
4
// for dictionary case use findIndex 
var imageList = [
   {value: 100},
   {value: 200},
   {value: 300},
   {value: 400},
   {value: 500}
];
var index = imageList.findIndex(img => img.value === 200);
1

New to Communities?

Join the community