Skip to content

fix mis-translated line #19

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 1 commit into from
Nov 25, 2018
Merged
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
2 changes: 1 addition & 1 deletion pages/Classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ if (employee.fullName) {
첫째, 접근자를 사용하려면 ECMAScript5 이상을 출력하도록 컴파일러를 설정해야 합니다.
ECMAScript3 다운그레이드는 지원되지 않습니다.

둘째, `get`과 `set`을 가진 접근자는 자동적으로 `readonly`로 추론됩니다.
둘째, `set`을 가지고 있지 않은 접근자는 자동적으로 `readonly`로 추론됩니다.
이것은 코드에서 `.d.ts` 파일을 생성할 때 유용합니다. 왜냐하면 프로퍼티를 변경할 수 없다는 것을 알 수 있기 때문입니다.

# 정적 프로퍼티 (Static Properties)
Expand Down