ES6 - toLowerCase()



This method returns the calling string value converted to lowercase.

Syntax

string.toLowerCase( )  

Return Value

Returns the calling string value converted to lowercase.

Example

var str = "Apples are round, and Apples are Juicy."; 
console.log(str.toLowerCase( ))   

Output

apples are round, and apples are juicy. 
Advertisements