Answers for "jquery includes string"

3

if str contains jquery

if (str.indexOf("Yes") >= 0)
  
  //case insensitive version
  if (str.toLowerCase().indexOf("yes") >= 0)
Posted by: Guest on July-01-2020
34

javascript includes

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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language