find index of string code example
Example 1: js find index of string in string
function findNemo(sentence) {
let indexOfFirst = sentence.split(' ').indexOf('Nemo') + 1;
if(indexOfFirst >= 0){
return `I found Nemo at ${indexOfFirst}!`;
}
return ("I can't find Nemo :(");
}
console.log(findNemo("I am finding Nemo !"));
console.log(findNemo("Nemo is me"));
console.log(findNemo("I Nemo am"));
Example 2: 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))}`);
Example 3: indexof javascript
arr.indexOf(searchElement[, fromIndex])