javascript converte string para minúsculas
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
Grepper
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
var str = "Hello World!";
var res = str.toLowerCase();
string.toLowerCase();
var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"
var string = "TO loWer CASE";
console.log(string.toLowerCase()); // to lower case
const normalString = "Hello World!"
console.log(normalString) // Output: Hello World!
const lowerString = normalString.toLowerCase()
console.log(lowerString) // Output: hello world!