📜  equalsignorecase 打字稿 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:32.603000             🧑  作者: Mango

代码示例2
const str1 = 'Bill@microsoft.com';
const str2 = 'bill@microsoft.com';

str1 === str2; // false
str1.toLowerCase() === str2.toLowerCase(); // true