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 dbe6bb6 commit 8f7df90Copy full SHA for 8f7df90
docs/playground/ko/TypeScript/Type Primitives/Tuples.ts
@@ -20,7 +20,7 @@ const passingResponse: [string, number] = ["{}", 200];
20
21
// 배열의 순서가 중요하지 않을 때,
22
// 모든 인덱스에 있는 요소는 문자열 또는 숫자가 될 수 있습니다.
23
-// 튜플에서 순서와 길이는 보장됩니다.
+// 하지만 튜플에서는 순서와 길이가 보장됩니다.
24
25
if (passingResponse[1] === 200) {
26
const localInfo = JSON.parse(passingResponse[0]);
0 commit comments