how to get the first character of a string in javascript
let str = 'John Wick'
let firstChar = str.charAt(0)
console.log(firstChar); // "J"
how to get the first character of a string in javascript
let str = 'John Wick'
let firstChar = str.charAt(0)
console.log(firstChar); // "J"
js find index of string in string
// Find the index of a string in a given sentence
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 !")); //"I found Nemo at 4!"
console.log(findNemo("Nemo is me")); //"I found Nemo at 1!"
console.log(findNemo("I Nemo am")); //"I found Nemo at 2!"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us