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

JavaScript Taking the Square Root of a Number

What is Prototype in Javascript ?

What is Namespace in Javascript ?

What is Promise in Javascript ?

What is this Keyword in Javascript ?