indexof on array code example
Example 1: javascript indexof
var colors=["red","green","blue"];
var pos=colors.indexOf("blue");
var str = "We got a poop cleanup on isle 4.";
var strPos = str.indexOf("poop");
Example 2: js get index of item in array
array.indexOf("item");
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: how to get the index of an array in javascript
search = (arr, item) => { return arr.indexOf(item); }
Example 5: indefOf
const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'];
console.log(beasts.indexOf('bison'));