EN
JavaScript - convert string to lowercase
15
points
In this article, we would like to show you how to convert strings to lower case in JavaScript.
The string class contains two methods that help to make the conversion to lower case. One of them allows making conversion by taking into account locale. To see practical usage of methods look at the below examples.
1. Built-in conversion approach example
With this approach, it is possible to convert any string to lower case.
// ONLINE-RUNNER:browser;
var text = 'Hi! How are you?';
var convertedText = text.toLowerCase();
console.log(convertedText);
2. Built-in conversion approach with locale example
This section shows how to convert any string to lower case taking into account locale. In almost all cases it produces a similar output string to the version without locale.
// ONLINE-RUNNER:browser;
var text = 'Здравствуй! Как поживаете?';
var convertedText = text.toLocaleLowerCase();
//var convertedText = text.toLocaleLowerCase('ru-RU');
//var convertedText = text.toLocaleLowerCase(['ru-RU', 'en-US']);
console.log(convertedText);