Dima
0
Q:

tolowercase

var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
43
var str = "Hello World!";
var res = str.toLowerCase();
8
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."
1

New to Communities?

Join the community