Answers for "check if string is subset of other string javascript"

38

javascript check if 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
3

javascript check if string contains a text substring

stringVariable.includes("Your Text");
Posted by: Guest on November-22-2020

Code answers related to "check if string is subset of other string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language