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 is Prototypal Inheritance in Javascript ?

What is Difference Between Call and Apply Methods in Javascript ?

How to Handle Exceptions in JavaScript ?

What are Control Flow Statements in Javascript ?

What is Event Capturing in Javascript ?