• JavaScript Video Tutorials

JavaScript String - toLocaleLowerCase() Method



Description

This method is used to convert the characters within a string to lowercase while respecting the current locale. For most languages, it returns the same output as toLowerCase.

Syntax

Its syntax is as follows −

string.toLocaleLowerCase( )

Return Value

Returns a string in lowercase with the current locale.

Example

Try the following example.

<html>
   <head>
      <title>JavaScript String toLocaleLowerCase() Method</title>
   </head>
   
   <body> 
      <script type = "text/javascript">
         var str = "Apples are round, and Apples are Juicy.";
         document.write(str.toLocaleLowerCase( ));
      </script>      
   </body>
</html>

Output

apples are round, and apples are juicy.  
javascript_strings_object.htm
Advertisements