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 Difference Between Undefined and Null in Javascript ?

What is Difference Between Call and Apply Methods in Javascript ?

JavaScript How To Find The Average Of 10 Numbers Using A While Lo ...

What is Code Smell in Javascript ?

JavaScript Using While Loop