Skip to content

Commit 0f4a472

Browse files
sangminKguyeolbumkeyyyeonjuan
authored
About this Handbook 까지 번역 issue#122 (typescript-kr#145)
* about this handbook * Update pages/the-handbook.md 감사합니다 :) Co-authored-by: GuyeolJeong <[email protected]> * Update pages/the-handbook.md Co-authored-by: GuyeolJeong <[email protected]> * Update pages/the-handbook.md Co-authored-by: GuyeolJeong <[email protected]> * Update pages/the-handbook.md Co-authored-by: GuyeolJeong <[email protected]> * Update pages/the-handbook.md 감사합니다 :) Co-authored-by: Kibeom Kwon <[email protected]> * Update pages/the-handbook.md 감사합니다 :) Co-authored-by: YeonJuan <[email protected]> * Update pages/the-handbook.md 감사합니다. Co-authored-by: YeonJuan <[email protected]> * Update pages/the-handbook.md 감사합니다 :) Co-authored-by: YeonJuan <[email protected]> Co-authored-by: GuyeolJeong <[email protected]> Co-authored-by: Kibeom Kwon <[email protected]> Co-authored-by: YeonJuan <[email protected]>
1 parent 4ef3ada commit 0f4a472

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pages/the-handbook.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ permalink: /docs/handbook/intro.html
55
oneline: Your first step to learn TypeScript
66
---
77

8-
## About this Handbook
8+
## 핸드북에 대해서 (About this Handbook)
99

10-
Over 20 years after its introduction to the programming community, JavaScript is now one of the most widespread cross-platform languages ever created. Starting as a small scripting language for adding trivial interactivity to webpages, JavaScript has grown to be a language of choice for both frontend and backend applications of every size. While the size, scope, and complexity of programs written in JavaScript has grown exponentially, the ability of the JavaScript language to express the relationships between different units of code has not. Combined with JavaScript's rather peculiar runtime semantics, this mismatch between language and program complexity has made JavaScript development a difficult task to manage at scale.
10+
JavaScript는 프로그래밍 커뮤니티에 도입된 지 20년이 지난 지금, 가장 널리 퍼진 cross-platform 언어 중 하나입니다. JavaScript는 웹 페이지에 사소한 상호작용을 추가하기 위한 작은 스크립팅 언어로 시작하여, 규모에 상관없이 프런트엔드와 백엔드 애플리케이션에서 선택 가능한 언어로 성장했습니다. JavaScript로 작성된 프로그램의 크기, 범위 및 복잡성은 기하급수적으로 커졌지만, 다른 코드 단위 간의 관계를 표현하는 JavaScript 언어의 능력은 그렇지 못했습니다. JavaScript의 다소 특이한 런타임 의미 체계(runtime semantics)와 더불어, 언어와 프로그램 복잡성 간의 불일치는 JavaScript 개발을 규모에 맞게 관리하기 어려운 작업으로 만들었습니다.
1111

12-
The most common kinds of errors that programmers write can be described as type errors: a certain kind of value was used where a different kind of value was expected. This could be due to simple typos, a failure to understand the API surface of a library, incorrect assumptions about runtime behavior, or other errors. The goal of TypeScript is to be a static typechecker for JavaScript programs - in other words, a tool that runs before your code runs (static) and ensure that the types of the program are correct (typechecked).
12+
프로그래머들이 작성하는 가장 흔한 오류는 타입 오류입니다: 다른 종류의 값이 예상되는 곳에 특정한 값이 사용된 경우입니다. 이는 단순한 오타, 라이브러리 API를 이해하지 못한 것, 런타임 동작에 대한 잘못된 가정 또는 다른 오류 때문일 수 있습니다. TypeScript의 목표는 JavaScript 프로그램의 정적 타입 검사자 입니다. 즉, 코드가 실행되기 전에 실행하고(정적), 프로그램 타입이 정확한지 확인하는 도구(타입 검사)입니다.
1313

14-
If you are coming to TypeScript without a JavaScript background, with the intention of TypeScript being your first language, we recommend you first start reading the documentation [on JavaScript at the Mozilla Web Docs](https://developer.mozilla.org/docs/Web/JavaScript/Guide).
15-
If you have experience in other languages, you should be able to pick up JavaScript syntax quite quickly by reading the handbook.
14+
JavaScript에 대한 배경지식 없이 TypeScript를 첫 번째 언어로 사용한다면, 먼저 [Mozilla 웹 문서에서 JavaScript에 대한](https://developer.mozilla.org/docs/Web/JavaScript/Guide) 문서를 읽어 보는 것이 좋습니다.
15+
다른 언어에 대한 경험이 있다면, 핸드북을 읽으면서 JavaScript 구문을 꽤 빠르게 익힐 수 있을 것입니다.
1616

1717
## How is this Handbook Structured
1818

@@ -54,4 +54,4 @@ Before getting started with [Basic Types](/docs/handbook/basic-types.html), we r
5454
* [TypeScript for New Programmers](/docs/handbook/typescript-from-scratch.html)
5555
* [TypeScript for JavaScript Programmers](/docs/handbook/typescript-in-5-minutes.html)
5656
* [TypeScript for OOP Programmers](/docs/handbook/typescript-in-5-minutes-oop.html)
57-
* [TypeScript for Functional Programmers](/docs/handbook/typescript-in-5-minutes-func.html)
57+
* [TypeScript for Functional Programmers](/docs/handbook/typescript-in-5-minutes-func.html)

0 commit comments

Comments
 (0)