how to test if a word is in string js code example
Example 1: angular string contains
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);
Example 2: js check if string contains character
if (your_string.indexOf('hello') > -1)
{
alert("hello found inside your_string");
}