📅  最后修改于: 2022-03-11 15:04:32.603000             🧑  作者: Mango
const str1 = 'Bill@microsoft.com';
const str2 = 'bill@microsoft.com';
str1 === str2; // false
str1.toLowerCase() === str2.toLowerCase(); // true