const str1 = 'Bill@microsoft.com'; const str2 = 'bill@microsoft.com'; str1 === str2; // false str1.toLowerCase() === str2.toLowerCase(); // true