Skip to content

Commit 1b4bd42

Browse files
authored
another one
1 parent f47d25e commit 1b4bd42

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/4-forms-controls/1-form-elements/1-add-select-option

1 file changed

+1
-1
lines changed

2-ui/4-forms-controls/1-form-elements/1-add-select-option/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The solution, step by step:
1313
1414
// 2)
1515
let newOption = new Option("Classic", "classic");
16-
select.append(newOption);
16+
genres.append(newOption);
1717
1818
// 3)
1919
newOption.selected = true;

0 commit comments

Comments
 (0)