Answers for "lower() in javascripts"

120

javascript lowercase string

var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
Posted by: Guest on July-16-2019
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