Answers for "js content of string"

2

How find a specific character in js

var word = "This is how you locate a word in a string";
var n = word.includes("word");
Posted by: Guest on November-25-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 "Javascript"

Browse Popular Code Answers by Language