Answers for "how to check if a string exists in another string in javascript"

30

check if string contains a substring in JavaScript?

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

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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language