Skip to content

translate dom-manipulation The Node interface #117 #157

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

Merged
merged 4 commits into from
Sep 12, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update pages/tutorials/dom-manipulation.md
Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
  • Loading branch information
sooyun429 and bumkeyy authored Sep 12, 2020
commit 5fd507d0cb86ef7eeda825d7d710006c4530c356
2 changes: 1 addition & 1 deletion pages/tutorials/dom-manipulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ interface HTMLElementTagNameMap {
appendChild<T extends Node>(newChild: T): T;
```

일반 매개변수 `T`가 `newChild` 인수로부터 나온 것이기 때문에 이 메서드는 `createElement` 메서드와 유사하게 작동합니다. `T`는 또 다른 기본 인터페이스인 `노드`로 _제한_됩니다.
제네릭 매개변수 `T`가 `newChild` 인수로부터 나온 것이기 때문에 이 메서드는 `createElement` 메서드와 유사하게 작동합니다. `T`는 또 다른 기본 인터페이스인 `노드`로 *제한*됩니다.

## Difference between `children` and `childNodes`

Expand Down