We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b3af23 commit dbe6bb6Copy full SHA for dbe6bb6
docs/playground/ko/TypeScript/Type Primitives/Tuples.ts
@@ -18,7 +18,7 @@ const passingResponse: [string, number] = ["{}", 200];
18
// 배열 ( (string | number)[] )과 튜플 ( [string, number] )의
19
// 차이점을 볼 수 있습니다.
20
21
-// 하나의 배열로서, 순서는 중요하지 않아서
+// 배열의 순서가 중요하지 않을 때,
22
// 모든 인덱스에 있는 요소는 문자열 또는 숫자가 될 수 있습니다.
23
// 튜플에서 순서와 길이는 보장됩니다.
24
0 commit comments