This method returns the calling string value converted to lowercase.
Its syntax is as follows −
string.toLowerCase( )
Returns the calling string value converted to lowercase.
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>
apples are round, and apples are juicy.