if contains in javascript code example
Example 1: js string contains
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);
Example 2: nodejs if contains
if (your_string.indexOf('hello') > -1)
{
alert("hello found inside your_string");
}