Answers for "'string'.tolowercase"

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
2

String.toLower() js

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language