Answers for "check if some part of a string is in another string javascript"

30

check if a string contains another string js

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

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

javascript check if string contains a text substring

stringVariable.includes("Your Text");
Posted by: Guest on November-22-2020

Code answers related to "check if some part of a string is in another string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language