From 2d858450194caee66ae5cf2dd6a7fb997770b2e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B2=BD=EC=9D=B4?= Date: Thu, 18 Jul 2024 01:53:23 +0900 Subject: [PATCH] fix: incorrect output NaN -> Infinity --- .../documentation/ko/get-started/TS for the New Programmer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/documentation/ko/get-started/TS for the New Programmer.md b/docs/documentation/ko/get-started/TS for the New Programmer.md index 11d89dda..c2043841 100644 --- a/docs/documentation/ko/get-started/TS for the New Programmer.md +++ b/docs/documentation/ko/get-started/TS for the New Programmer.md @@ -96,7 +96,7 @@ TypeScript는 독특한 구문 때문에 JavaScript 코드를 오류로 보지 console.log(4 / []); ``` -구문적으로 옳은(syntactically-legal) 위 코드는 JavaScript에서 `NaN`을 출력합니다. +구문적으로 옳은(syntactically-legal) 위 코드는 JavaScript에서 `Infinity`을 출력합니다. 그러나 TypeScript는 배열로 숫자를 나누는 연산이 옳지 않다고 판단하고 오류를 발생시킵니다: ``` @@ -184,4 +184,4 @@ TypeScript는 JavaScript와 구문과 런타임 특성을 공유하므로, JavaS * You can+should read existing JS resources * Just paste it in and see what happens * Consider turning off 'strict' --> - \ No newline at end of file +