js string.lower code example

Example 1: javascript lowercase string

var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"

Example 2: how to convert whole strig in lowercase in js

var str = "Hello World!";
var res = str.toLowerCase();

Example 3: String.toLower() js

const str = "Hello world!";
console.log(str); //Output: "Hello world!"
const String = str.toLowerCase();
console.log(String) //Output: "hello world!"

Example 4: tolowercase js

const sentence = 'The quick brown fox jumps over the lazy dog.';
console.log(sentence.toLowerCase());