Answers for "character.islowercase('a')"

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
0

7.3.2. .toLowerCase()

/*The toLowerCase() string method returns the value of its string in 
all lowercase letters. Since it is a method, we must precede it with a 
specific string in order to use it.*/

let nonprofit = "LaunchCode";

console.log(nonprofit.toLowerCase());
console.log(nonprofit);

//launchcode
//LaunchCode
Posted by: Guest on June-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language