Answers for "javascript check if string is in string"

8

javascript string contains function

s = "Hello world";
console.log(s.includes("world"));
Posted by: Guest on October-06-2020
6

string.contains javascript

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
Posted by: Guest on April-28-2020
1

if is a string javascript

function isString(x) {
  return Object.prototype.toString.call(x) === "[object String]"
}
Posted by: Guest on April-06-2021

Code answers related to "javascript check if string is in string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language