Answers for "how to check whether a substring is present in a string in javascript"

23

check for substring javascript

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true
Posted by: Guest on July-06-2020
34

js includes

const pets = ['cat', 'dog', 'bat'];

console.log(pets.includes('cat'));
// output: true
Posted by: Guest on June-12-2020
1

javascript check if string contains a text substring

stringVariable.includes("Your Text");
Posted by: Guest on November-22-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 whether a substring is present in a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language