1const str = "Hello world!";
2console.log(str); //Output: "Hello world!"
3const String = str.toLowerCase();
4console.log(String) //Output: "hello world!"
1const sentence = 'The quick brown fox jumps over the lazy dog.';
2console.log(sentence.toLowerCase());