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

23

check for substring javascript

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

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

javascript contains substring

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

console.log(string.includes(substring));  //true
Posted by: Guest on July-18-2019

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language