how to know if a string contains a substring in javascript code example
Example 1: angular string contains
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
Example 2: check for substring javascript
const string = "javascript";
const substring = "script";
console.log(string.includes(substring));
Example 3: javascript string contains
var string = "foo",
substring = "oo";
console.log(string.includes(substring));
Example 4: javascript string contains function
s = "Hello world";
console.log(s.includes("world"));
Example 5: angular string contains
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);
Example 6: javascript contains substring
var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
alert("Not again");
}