Answers for "how to find if string contains substring in javascript"

6

js check if string contains character

"FooBar".includes("oo"); // true

"FooBar".includes("foo"); // false

"FooBar".includes("oo", 2); // false
Posted by: Guest on June-12-2020
6

string.contains javascript

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
Posted by: Guest on April-28-2020

Code answers related to "how to find if string contains substring in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language