Answers for "get string from index javascript"

13

substring

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"
Posted by: Guest on February-06-2020
-2

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!"
Posted by: Guest on March-15-2021
0

javascript select letter in string

const str = 'Hello';
str.substring(0, 2); // => 'Hel'
Posted by: Guest on November-28-2020

Code answers related to "get string from index javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language