Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update(JS): web/javascript/reference #3355

Merged
merged 2 commits into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions files/uk/web/javascript/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,29 @@ page-type: landing-page
- {{jsxref("Classes/static", "static")}}
- [Блоки статичної ініціалізації](/uk/docs/Web/JavaScript/Reference/Classes/Static_initialization_blocks)

## Регулярні вирази

[Регулярні вирази JavaScript.](/uk/docs/Web/JavaScript/Reference/Regular_expressions)

- [Зворотні посилання: `\1`, `\2`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Backreference)
- [Групи захоплення: `(...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Capturing_group)
- [Класи символів: `[...]`, `[^...]`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Character_class)
- [Екранування класів символів: `\d`, `\D`, `\w`, `\W`, `\s`, `\S`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Character_class_escape)
- [Екранування символів: `\n`, `\u{...}`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Character_escape)
- [Диз'юнкція: `|`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Disjunction)
- [Твердження про межу вводу: `^`, `$`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Input_boundary_assertion)
- [Буквальні символи: `a`, `b`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Literal_character)
alinkedd marked this conversation as resolved.
Show resolved Hide resolved
- [Твердження зазирання: `(?=...)`, `(?!...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Lookahead_assertion)
- [Твердження озирання: `(?<=...)`, `(?<!...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Lookbehind_assertion)
alinkedd marked this conversation as resolved.
Show resolved Hide resolved
- [Модифікатори: `(?ims-ims:...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Modifier)
- [Іменовані зворотні посилання: `\k<name>`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Named_backreference)
- [Іменовані групи захоплення: `(?<name>...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Named_capturing_group)
- [Незахоплювальні групи: `(?:...)`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Non-capturing_group)
- [Квантифікатори: `*`, `+`, `?`, `{n}`, `{n,}`, `{n,m}`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Quantifier)
- [Екранування класів символів Unicode: `\p{...}`, `\P{...}`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Unicode_character_class_escape)
- [Джокер: `.`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Wildcard)
alinkedd marked this conversation as resolved.
Show resolved Hide resolved
- [Твердження про межі слів: `\b`, `\B`](/uk/docs/Web/JavaScript/Reference/Regular_expressions/Word_boundary_assertion)

## Додаткові довідкові сторінки

- {{jsxref("Lexical_grammar", "Лексична граматика", "", 1)}}
Expand Down
1 change: 1 addition & 0 deletions uk_spelling_additions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@
незаписувану
незастарілих
незахоплювальна
незахоплювальні
незахоплювальну
незв'язування
незмінювальна
Expand Down
Loading