Answers for ".toLower"

3

tolowercase

const sentence = 'The quick brown fox jumps over the lazy dog.';

console.log(sentence.toLowerCase());
// expected output: "the quick brown fox jumps over the lazy dog."
Posted by: Guest on August-20-2020
1

String.toLower() js

const str = "Hello world!";
console.log(str); //Output: "Hello world!"
const String = str.toLowerCase();
console.log(String) //Output: "hello world!"
Posted by: Guest on April-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language