Answers for "how to add tolowercase javascript"

3

javascript string to lowercase

var string = "TO loWer CASE";
console.log(string.toLowerCase()); // to lower case
Posted by: Guest on June-19-2021
0

how to use .tolowercase

.toLowerCase is a command you can you to make pieces of string 
into lowercase when printed with console.log
Ex. 
// This is the variable we will be using
let Greeting = 'Hi!';
//Then, we reassign the variable to use the command
Greeting = .toLowercCase
// Print = hi!

Happy Codings!
Posted by: Guest on February-07-2022

Code answers related to "how to add tolowercase javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language