search substring in string js code example
Example 1: javascript string contains function
s = "Hello world";
console.log(s.includes("world"));
Example 2: angular string contains
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);