Answers for "check if string is in a string javascript"

1

javascript string contains

var string = "foo",
var substring = "oo";

console.log(string.includes(substring));
Posted by: Guest on May-24-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 "check if string is in a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language