get index of value js code example
Example 1: how to find the index of a value in an array in javascript
var list = ["apple","banana","orange"]
var index_of_apple = list.indexOf("apple")
Example 2: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple");
Example 3: javasript array indexof
var array = [2, 9, 9];
array.indexOf(2);
array.indexOf(7);
array.indexOf(9, 2);
array.indexOf(2, -1);
array.indexOf(2, -3);
Example 4: indefOf
const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'];
console.log(beasts.indexOf('bison'));