-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
translation(js): Web/JavaScript/Reference/Global_Objects/String/toLow…
…erCase
- Loading branch information
1 parent
26526f1
commit fc1fbf9
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
files/uk/web/javascript/reference/global_objects/string/tolowercase/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
title: String.prototype.toLowerCase() | ||
slug: Web/JavaScript/Reference/Global_Objects/String/toLowerCase | ||
tags: | ||
- JavaScript | ||
- Method | ||
- Prototype | ||
- Reference | ||
- String | ||
browser-compat: javascript.builtins.String.toLowerCase | ||
--- | ||
{{JSRef}} | ||
|
||
Метод **`toLowerCase()`** повертає значення рядка, на якому викликається, переведене у нижній регістр. | ||
|
||
{{EmbedInteractiveExample("pages/js/string-tolowercase.html","shorter")}} | ||
|
||
## Синтаксис | ||
|
||
```js | ||
toLowerCase() | ||
``` | ||
|
||
### Повернене значення | ||
|
||
Новий рядок, що містить значення рядка, на якому було викликано метод, переведене у нижній регістр. | ||
|
||
## Опис | ||
|
||
Метод `toLowerCase()` повертає значення рядка, переведене у нижній регістр. Виклик `toLowerCase()` ніяк не впливає на значення початкового рядка `str`. | ||
|
||
## Приклади | ||
|
||
### Застосування `toLowerCase()` | ||
|
||
```js | ||
console.log('АБЕТКА'.toLowerCase()); // 'абетка' | ||
``` | ||
|
||
## Специфікації | ||
|
||
{{Specifications}} | ||
|
||
## Сумісність із браузерами | ||
|
||
{{Compat}} | ||
|
||
## Дивіться також | ||
|
||
- {{jsxref("String.prototype.toLocaleLowerCase()")}} | ||
- {{jsxref("String.prototype.toLocaleUpperCase()")}} | ||
- {{jsxref("String.prototype.toUpperCase()")}} |