toLocaleLowerCase (JavaScript)
Converts all characters of a string to lower case taking into account the host locale.
Defined in
String (Standard - JavaScript)Syntax
toLocaleLowerCase() : string
Return value | Description |
---|---|
string |
The string in locale lower case. |
Examples
The following example converts a string to locale lower case.cities = new String("Paris Moscow Tokyo");
cities.toLocaleLowerCase()