how to check a particular string is there in another string node code example
Example 1: string contains in javascript
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
Example 2: js string does not contain
"this is the string".indexOf("cake"); // -1 (does not contain)
"this string has cake".indexOf("cake"); // 16 (contains)