1var string = "TO loWer CASE";
2console.log(string.toLowerCase()); // to lower case
1const sentence = 'The quick brown fox jumps over the lazy dog.';
2
3console.log(sentence.toLowerCase());
4// expected output: "the quick brown fox jumps over the lazy dog."
5