first index of string in js code example
Example 1: get index of first number in string javascript
var str = "Se7en";
var search = str.search(/\d/);
console.log("first digit at: ", search);
Example 2: 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"));