string array indexof javascript code example
Example 1: js get index of item in array
array.indexOf("item");
Example 2: how to get the index of an array in javascript
search = (arr, item) => { return arr.indexOf(item); }
Example 3: js index of
const paragraph = 'The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?';
const searchTerm = 'dog';
const indexOfFirst = paragraph.indexOf(searchTerm);
console.log(`The index of the first "${searchTerm}" from the beginning is ${indexOfFirst}`);
console.log(`The index of the 2nd "${searchTerm}" is ${paragraph.indexOf(searchTerm, (indexOfFirst + 1))}`);