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

1 Answer

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

const substr = 'NODE';

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

 



answered Jul 12, 2022 by avibootz

Related questions

1 answer 138 views
1 answer 164 views
1 answer 148 views
1 answer 129 views
1 answer 130 views
2 answers 193 views
1 answer 138 views
...