Answers for "how to test if a word is in string js"

2

angular string contains

var string = "foo";
var substring = "oo";

console.log(string.indexOf(substring) !== -1);
Posted by: Guest on March-24-2020
0

js check if string contains character

if (your_string.indexOf('hello') > -1)
{
  alert("hello found inside your_string");
}
Posted by: Guest on June-12-2020

Code answers related to "how to test if a word is in string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language