find array index from value code example
Example 1: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple"); // Returns 2
Example 2: .findIndex(
array.findIndex(call back function)
//index of ............
//first