value.tolowercase function code example
Example 1: 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."
Example 2: js tolowercase
str.toLowerCase()