Answers for "how to check if certain character is in string and how many times its in there javascript"

6

js check if string contains character

"FooBar".includes("oo"); // true

"FooBar".includes("foo"); // false

"FooBar".includes("oo", 2); // false
Posted by: Guest on June-12-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 check if certain character is in string and how many times its in there javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language