lowercase code example
Example 1: perl lowercase
# create a perl string
$a = 'FOO BAR';
# convert the string to lowercase
$b = lc $a;
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."