You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: pages/tutorials/ts-for-js-programmers.md
+40-41
Original file line number
Diff line number
Diff line change
@@ -123,38 +123,38 @@ JavaScript에서 사용할 수 있는 적은 종류의 원시 타입이 이미
123
123
124
124
타입을 구축하기 위한 두 가지 구문이 있다는 것을 꽤 빠르게 알 수 있을 것입니다.: [Interfaces and Types](/play/?e=83#example/types-vs-interfaces) - `interface`를 우선적으로 사용하고 특정 기능이 필요할 때 `type`을 사용해야 합니다.
125
125
126
-
## Composing Types
126
+
## 타입 구성 (Composing Types)
127
127
128
-
Similar to how you would create larger complex objects by composing them together TypeScript has tools for doing this with types.
129
-
The two most popular techniques you would use in everyday code to create new types by working with many smaller types are Unions and Generics.
128
+
객체들을 조합하여 더 크고 복잡한 객체를 만드는 방법과 유사하게 TypeScript에 타입으로 이를 수행하는 도구가 있습니다.
129
+
여러가지 타입을 이용하여 새 타입을 작성하기 위해 일상적인 코드에서 가장 많이 사용되는 두 가지 코드로는 유니언(Union)과 제네릭(Generic)이 있습니다.
130
130
131
-
### Unions
131
+
### 유니언 (Unions)
132
132
133
-
A union is a way to declare that a type could be one of many types. For example, you could describe a `boolean`type as being either `true`or`false`:
133
+
유니언은 타입이 여러 타입 중 하나일 수 있음을 선언하는 방법입니다. 예를 들어, `boolean`타입을 `true`또는`false`로 설명할 수 있습니다:
134
134
135
-
```ts twoslash
135
+
```
136
136
type MyBool = true | false;
137
137
```
138
138
139
-
_Note:_If you hover over `MyBool` above, you'll see that it is classed as `boolean` - that's a property of the Structural Type System, which we'll get to later.
139
+
_참고:_`MyBool`위에 마우스를 올린다면, `boolean`으로 분류된 것을 볼 수 있습니다 - 구조적 타입 시스템의 프로퍼티며, 나중에 살펴보겠습니다.
140
140
141
-
One of the most popular use-cases for union types is to describe a set of `string`s or`number`s [literal](/docs/handbook/literal-types.html) which a value is allowed to be:
141
+
유니언 타입이 가장 많이 사용된 사례 중 하나는 값이 다음과 같이 허용되는 `string` 또는`number`의 [리터럴](/docs/handbook/literal-types.html)집합을 설명하는 것입니다:
142
142
143
-
```ts twoslash
143
+
```
144
144
type WindowStates = "open" | "closed" | "minimized";
145
145
type LockStates = "locked" | "unlocked";
146
146
type OddNumbersUnderTen = 1 | 3 | 5 | 7 | 9;
147
147
```
148
148
149
-
Unions provide a way to handle different types too, for example you may have a function which accepts an `array`or a `string`.
149
+
유니언은 다양한 타입을 처리하는 방법을 제공하는데, 예를 들어 `array`또는 `string`을 받는 함수가 있을 수 있습니다.
150
150
151
-
```ts twoslash
151
+
```
152
152
function getLength(obj: string | string[]) {
153
153
return obj.length;
154
154
}
155
155
```
156
156
157
-
TypeScript understands how code changes what the variable could be with time, you can use these checks to narrow the type down.
157
+
TypeScript는 코드가 시간에 따라 변수가 변경되는 방식을 이해하며, 이러한 검사를 사용해 타입을 골라낼 수 있습니다.
@@ -165,10 +165,10 @@ TypeScript understands how code changes what the variable could be with time, yo
165
165
| function |`typeof f === "function"`|
166
166
| array |`Array.isArray(a)`|
167
167
168
-
For example, you could differentiate between a `string` and an `array`, using `typeof obj === "string"` and TypeScript will know what the object is down different code paths.
168
+
예를 들어, `typeof obj === "string"`을 이용하여 `string`과 `array`를 구분할 수 있으며 TypeScript는 객체가 다른 코드 경로에 있음을 알게 됩니다.
169
169
170
170
<!-- prettier-ignore -->
171
-
```ts twoslash
171
+
```
172
172
function wrapInArray(obj: string | string[]) {
173
173
if (typeof obj === "string") {
174
174
return [obj];
@@ -179,46 +179,45 @@ function wrapInArray(obj: string | string[]) {
179
179
}
180
180
```
181
181
182
-
### Generics
182
+
### 제네릭 (Generics)
183
183
184
-
You can get very deep into the TypeScript generic system, but at a 1 minute high-level explanation, generics are a way to provide variables to types.
184
+
TypeScript 제네릭 시스템에 대해 자세히 알아볼 수 있지만, 1분 정도의 수준 높은 설명을 하기 위해, 제네릭은 타입에 변수를 제공하는 방법입니다.
185
185
186
-
A common example is an array, an array without generics could contain anything. An array with generics can describe what values are inside in the array.
186
+
배열이 일반적인 예시이며, 제네릭이 없는 배열은 어떤 것이든 포함할 수 있습니다. 제네릭이 있는 배열은 배열 안의 값을 설명할 수 있습니다.
187
187
188
188
```ts
189
189
typeStringArray=Array<string>;
190
190
typeNumberArray=Array<number>;
191
191
typeObjectWithNameArray=Array<{ name:string }>;
192
192
```
193
193
194
-
You can declare your own types which use generics:
194
+
제네릭을 사용하는 고유 타입을 선언할 수 있습니다:
195
195
196
-
```ts twoslash
196
+
```
197
197
// @errors: 2345
198
198
interface Backpack<Type> {
199
199
add: (obj: Type) => void;
200
200
get: () => Type;
201
201
}
202
202
203
-
// This line is a shortcut to tell TypeScript there is a
204
-
// constant called `backpack`, and to not worry about where it came from
205
-
declareconst backpack:Backpack<string>;
203
+
// 이 줄은 TypeScript에 `backpack`이라는 상수가 있음을 알리는 지름길이며
204
+
// const backpakc: Backpack<string>이 어디서 왔는지 걱정할 필요가 없습니다.
206
205
207
-
//object is a string, because we declared it above as the variable part of Backpack
206
+
// 위에서 Backpack의 변수 부분으로 선언해서, object는 string입니다.
208
207
const object = backpack.get();
209
208
210
-
//Due to backpack variable being a string, you cannot pass a number to the add function
209
+
// backpack 변수가 string이므로, add 함수에 number를 전달할 수 없습니다.
211
210
backpack.add(23);
212
211
```
213
212
214
-
## Structural Type System
213
+
## 구조적 타입 시스템 (Structural Type System)
215
214
216
-
One of TypeScript's core principles is that type checking focuses on the _shape_ which values have.
217
-
This is sometimes called "duck typing" or "structural typing".
215
+
TypeScript의 핵심 원칙 중 하나는 타입 검사가 값이 있는 _형태_에 집중한다는 것입니다.
216
+
이는 때때로 "덕 타이핑(duck typing)" 또는 "구조적 타이핑" 이라고 불립니다.
218
217
219
-
In a structural type system if two objects have the same shape, they are considered the same.
218
+
구조적 타입 시스템에서 두 객체가 같은 형태를 가지면 같은 것으로 간주됩니다.
220
219
221
-
```ts twoslash
220
+
```
222
221
interface Point {
223
222
x: number;
224
223
y: number;
@@ -228,17 +227,17 @@ function printPoint(p: Point) {
228
227
console.log(`${p.x}, ${p.y}`);
229
228
}
230
229
231
-
//prints "12, 26"
230
+
// "12, 26"를 출력합니다
232
231
const point = { x: 12, y: 26 };
233
232
printPoint(point);
234
233
```
235
234
236
-
The `point` variable is never declared to be a `Point` type, but TypeScript compares the shape of `point` to the shape of `Point` in the type-check.
237
-
Because they both have the same shape, then it passes.
235
+
`point`변수는 `Point`타입으로 선언된 적이 없지만, TypeScript는 타입 검사에서 `point`의 형태와 `Point`의 형태를 비교합니다.
236
+
둘 다 같은 형태이기 때문에, 통과합니다.
238
237
239
-
The shape matching only requires a subset of the object's fields to match.
0 commit comments