index of value in array

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

var index_of_apple = list.indexOf("apple") // 0// 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);var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple"); // Returns 2
Source

Also in JavaScript: