Answers for "javascript check if string contains at the begins with substring"

28

javascript string contains substring

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)
Posted by: Guest on July-18-2019
1

javascript check if string contains at the begins with substring

var str = "Hello world, welcome to the universe.";

var n = str.startsWith("Hello");
Posted by: Guest on June-27-2021

Code answers related to "javascript check if string contains at the begins with substring"

Code answers related to "Javascript"

Browse Popular Code Answers by Language