Copyright © tutorialspoint.com
This method returns the calling string value converted to lowercase.
string.toLowerCase( ) |
Here is the detail of parameters:
NA
Returns the calling string value converted to lowercase.
<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> |
This will produce following result:
apples are round, and apples are juicy. |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com