File tree Expand file tree Collapse file tree 3 files changed +52
-9
lines changed
playground-examples/copy/ko
tsconfig-reference/copy/ko/options Expand file tree Collapse file tree 3 files changed +52
-9
lines changed Original file line number Diff line number Diff line change
1
+ //// { compiler: { target: 99 }, order: 1 }
2
+
3
+ // JavaScript에서 표현할 수 있는 숫자의 크기에
4
+ // 제한이 있다는 걸 알고 계셨나요?
5
+
6
+ const maxHighValue = 9007199254740991 ;
7
+ const maxLowValue = - 9007199254740991 ;
8
+
9
+ // 아래 숫자보다 수가 하나라도 더 크거나 작으면
10
+ // 매우 위험해집니다
11
+
12
+ const oneOverMax = 9007199254740992 ;
13
+ const oneBelowMin = - 9007199254740992 ;
14
+
15
+ // 이 크기의 수치를 다루는 방법은
16
+ // numbers 대신 BigInts로
17
+ // 변환하는 것입니다:
18
+ //
19
+ // https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/BigInt
20
+
21
+ // TypeScript는 이제 JavaScript에 타입이
22
+ // BigInt 여야 한다는 것을 알리는 접미사 "n"을 추가하여
23
+ // 2^52(양수/음수) 이상의 숫자 리터럴에 대한
24
+ // 기능을 제공합니다.
25
+
26
+ // 숫자 리터럴
27
+ 9007199254740993 ;
28
+ - 9007199254740993 ;
29
+ 9007199254740994 ;
30
+ - 9007199254740994 ;
31
+
32
+ // 16진수
33
+ 0x19999999999999 ;
34
+ - 0x19999999999999 ;
35
+ 0x20000000000000 ;
36
+ - 0x20000000000000 ;
37
+ 0x20000000000001 ;
38
+ - 0x20000000000001 ;
Original file line number Diff line number Diff line change 1
1
{
2
- "sections" : [
3
- {
2
+ "sections" : [{
4
3
"name" : " JavaScript" ,
5
4
"id" : " JavaScript" ,
6
- "subtitle" : " TypeScript가 최소한의 추가 구문으로 JavaScript 작업을 어떻게 개선하는지 확인해보세요 ."
5
+ "subtitle" : " See how TypeScript improves day to day working with JavaScript with minimal additional syntax ."
7
6
},
8
7
{
9
8
"name" : " TypeScript" ,
10
9
"id" : " TypeScript" ,
11
- "subtitle" : " TypeScript가 JavaScript를 확장하여 안전성과 도구를 추가하는 방법을 살펴보세요 ."
10
+ "subtitle" : " Explore how TypeScript extends JavaScript to add more safety and tooling ."
12
11
},
13
12
{
14
13
"name" : " 3.7" ,
15
14
"id" : " 3.7" ,
16
- "subtitle" : " <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-7/'>릴리즈 노트 </a>를 확인해보세요 ."
15
+ "subtitle" : " See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-7/'>Release notes </a>."
17
16
},
18
17
{
19
18
"name" : " 3.8" ,
20
19
"id" : " 3.8" ,
21
- "subtitle" : " <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-8/'>릴리즈 노트 </a>를 확인해보세요 ."
20
+ "subtitle" : " See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-8/'>Release notes </a>."
22
21
},
23
22
{
24
23
"name" : " 4.0" ,
25
24
"id" : " 4.0" ,
26
- "subtitle" : " <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/'>릴리즈 노트 </a>를 확인해보세요 ."
25
+ "subtitle" : " See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/'>Release notes </a>."
27
26
},
28
27
{
29
28
"name" : " Playground V3" ,
30
29
"id" : " Playground" ,
31
- "subtitle" : " 이 웹사이트에서 변경된 사항을 확인해보세요 ."
30
+ "subtitle" : " Learn what has changed in this website ."
32
31
}
33
32
],
34
33
"sortedSubSections" : [
60
59
" New TS Features" ,
61
60
" New Checks"
62
61
]
63
- }
62
+ }
Original file line number Diff line number Diff line change
1
+ ---
2
+ display : " New Line"
3
+ oneline : " Set the newline character"
4
+ ---
5
+
6
+ 파일을 내보낼 때 줄바꿈의 끝을 지정합니다 : 'CRLF' (docs) 또는 'LF' (unix).
You can’t perform that action at this time.
0 commit comments