how to return an index of array in javascript code example
Example 1: js get index of item in array
array.indexOf("item");
Example 2: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple"); // Returns 2