how to convert a string to lowercase javascript code example
Example 1: how to convert whole strig in lowercase in js
var str = "Hello World!";
var res = str.toLowerCase();
Example 2: tolowercase
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."