How to compare two strings ignoring case in Node.js

2 Answers

0 votes
const str1 = "node.js";
 
const str2 = "NODE.JS";
 
console.log(str1.toUpperCase() === str2.toUpperCase());
 
   
     
     
/*
run:
     
true
     
*/

 



answered May 22, 2024 by avibootz
0 votes
const str1 = "node.js";
 
const str2 = "NODE.JS";
 
console.log(str1.toLowerCase() === str2.toLowerCase());
 
   
     
     
/*
run:
     
true
     
*/

 



answered May 22, 2024 by avibootz

Related questions

1 answer 127 views
1 answer 134 views
1 answer 121 views
2 answers 146 views
1 answer 136 views
136 views asked Aug 23, 2024 by avibootz
1 answer 118 views
1 answer 109 views
...