Javascript String toLocaleLowerCase() is an inbuilt function that converts a string to lowercase letters, according to the host’s current locale.  For most languages, it returns the same outcome as toLowerCase** function**. The toLocaleLowerCase() method returns a calling string value converted to the lower case, according to any locale-specific case mappings.

Javascript String toLocaleLowerCase()

The locale is based on the language settings of the browser. The toLocaleLowerCase() method returns the same result as the  toLowerCase() method. However, for some locales, where language conflict with the regular Unicode case mappings occurs (such as Turkish), the results may vary. Javascript toLocaleLowerCase() method does not change the original string.

#javascript #javascript tolocalelowercase() #js

Javascript String toLocaleLowerCase() Example
1.40 GEEK