JavaScript Making Lowercase

The toLocaleLowerCase method is used to lowercase a text in JavaScript.

The usage is as follows.

var strn = "I LOVE CODING.."; document.write( strn.toLocaleLowerCase() );

The result looks like this..



You May Interest

What are Advantages of Using External Javascript ?

JavaScript Using For Loop

JavaScript Using While Loop

What is Namespace in Javascript ?

What is Prototypal Inheritance in Javascript ?