to lowercase in javascript code example
Example 1: javascript lowercase string
var str = "My Big Boy!"
var res = str.toLowerCase();
Example 2: tolowercase javascript
var str = "Hello World!";
var res = str.toLowerCase();
Example 3: javascript lowercase string
var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"
Example 4: String.toLower() js
const str = "Hello world!";
console.log(str);
const String = str.toLowerCase();
console.log(String)
Example 5: js tolowercase use
string.toLowerCase(2)