Answers for "how to check string contains javascript best way"

4

includes in javascript

var colors = ['yellow', 'red', 'pink'];
var string = 'yellow and red are pretty cool';

// outputs false
console.log(colors.include('blue');
// outputs true
console.log(string.includes('yellow');
Posted by: Guest on October-04-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 string contains javascript best way"

Code answers related to "Javascript"

Browse Popular Code Answers by Language