diff --git a/2-ui/4-forms-controls/1-form-elements/1-add-select-option/solution.md b/2-ui/4-forms-controls/1-form-elements/1-add-select-option/solution.md index 80fad3850..997c98812 100644 --- a/2-ui/4-forms-controls/1-form-elements/1-add-select-option/solution.md +++ b/2-ui/4-forms-controls/1-form-elements/1-add-select-option/solution.md @@ -1,9 +1,9 @@ -The solution, step by step: +Рішення, крок за кроком: ```html run ``` -There may be multiple elements with the same name. This is typical with radio buttons and checkboxes. +У колекції може бути кілька елементів з однаковим ім’ям (`name`). Це типово для перемикачів (radio buttons) та чекбоксів (checkboxes). -In that case, `form.elements[name]` is a *collection*. For instance: +В такому випадку `form.elements[name]` -- це *колекція*. Наприклад: ```html run height=40