toLowerCase < String < JavaScript
The toUpperCase() of a String returns the string converted to lowercase.
const sentence = 'The quick brown fox jumps over the lazy dog.';
const sentenceLowerCase = sentence.toLowerCase();
console.log(sentenceLowerCase);
// "the quick brown fox jumps over the lazy dog."