node js tolowercase code example
Example 1: tolowercase javascript
var str = "Hello World!";
var res = str.toLowerCase();
Example 2: js tolowercase
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: js tolowercase use
string.toLowerCase(2)
Example 5: tolowercase js
const sentence = 'The quick brown fox jumps over the lazy dog.';
console.log(sentence.toLowerCase());