How to use includes method ignoring the case in Node.js

1 Answer

0 votes
const str = "node.js php java c c++";

const substr = 'JAVA';

console.log(str.toLowerCase().includes(substr.toLowerCase()));
    
    
    
    
/*
run:
    
true
    
*/

 



answered Jul 12, 2022 by avibootz

Related questions

1 answer 140 views
1 answer 127 views
1 answer 114 views
1 answer 130 views
1 answer 165 views
2 answers 184 views
1 answer 133 views
...