Answers for "make char tolower js"

25

tolowercase javascript

var str = "Hello World!";
var res = str.toLowerCase();
Posted by: Guest on June-01-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