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.
Its syntax is as follows −
string.toLocaleLowerCase( )
Returns a string in lowercase with the current locale.
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>
apples are round, and apples are juicy.