• JavaScript Video Tutorials

JavaScript String - toLowerCase() Method



Description

This method returns the calling string value converted to lowercase.

Syntax

Its syntax is as follows −

string.toLowerCase( )

Return Value

Returns the calling string value converted to lowercase.

Example

Try the following example.

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

Output

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