get if string contains character js code example
Example 1: javascript string includes
'Blue Whale'.includes('blue') // returns false
Example 2: string.contains javascript
var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
alert("Not again");
}