Answers for "string.tolowercase() method"

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
0

.toLowerCase

let string = `Your Text Here`.toLowerCase(); //returns "your text here"
Posted by: Guest on July-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language