Answers for "javascript other way to substring with includes"

37

javascript 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

Code answers related to "javascript other way to substring with includes"

Code answers related to "Javascript"

Browse Popular Code Answers by Language