Answers for "check if string include words 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
0

check if string contains word nodejs

'a nice string'.includes('nice') //true
'a nice string'.includes('nice', 3) //false
'a nice string'.includes('nice', 2) //true
Posted by: Guest on November-02-2021

Code answers related to "check if string include words javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language