How to compare two strings ignoring case in TypeScript

2 Answers

0 votes
const str1: string = "typescript";
 
const str2: string = "TYPESCRIPT";
 
console.log(str1.toUpperCase() === str2.toUpperCase());
 
   
     
     
/*
run:
     
true
     
*/

 



answered May 22, 2024 by avibootz
0 votes
const str1: string = "typescript";
 
const str2: string = "TYPESCRIPT";
 
console.log(str1.toLowerCase() === str2.toLowerCase());
 
   
     
     
/*
run:
     
true
     
*/

 



answered May 22, 2024 by avibootz

Related questions

1 answer 140 views
1 answer 132 views
2 answers 154 views
1 answer 142 views
142 views asked Aug 23, 2024 by avibootz
1 answer 130 views
1 answer 116 views
1 answer 187 views
...