# The String toLocaleLowerCase() method

> Learn how the JavaScript toLocaleLowerCase() method returns a lowercase string using locale-specific case mappings, handy for languages like Turkish.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2019-03-04 | Topics: [JavaScript](https://flaviocopes.com/tags/js/) | Canonical: https://flaviocopes.com/javascript-string-tolocalelowercase/

Returns a new string with the lowercase transformation of the original string, according to the locale case mappings.

The first parameter represents the locale, but it's optional (and if omitted, the current locale is used):

```js
'Testing'.toLocaleLowerCase() //'testing'
'Testing'.toLocaleLowerCase('it') //'testing'
'Testing'.toLocaleLowerCase('tr') //'testing'
```

As usual with internationalization we might not recognize the benefits, but I read on MDN that Turkish does not have the same case mappings at other languages, to start with.

Similar to the [`toLowerCase()`](https://flaviocopes.com/javascript-string-tolowercase/) method, except that does not take locales into consideration.
