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 this Keyword in Javascript ?

What is Difference Between Javascript and ECMAScript ?

JavaScript Concatenating Arrays

JavaScript Using While Loop

JavaScript Adding Elements to Array