js check is string has substring code example
Example 1: javascript string contains function
s = "Hello world";
console.log(s.includes("world"));
Example 2: .includes( string
var str = "Hello world, welcome to the universe.";
var n = str.includes("world");