JS IF TRING CONTAIN code example
Example 1: angular string contains
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
Example 2: javascript string contains function
s = "Hello world";
console.log(s.includes("world"));