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 Strict Mode in JavaScript ?

JavaScript Powering a Number

What is Console Object in Javascript ?

What are Advantages of Using External Javascript ?

What is setInterval Function in Javascript ?