From c04a0d2274c4d4a9519744f89d305f11a860e2dd Mon Sep 17 00:00:00 2001 From: 정현수 <54893898+junghyeonsu@users.noreply.github.com> Date: Wed, 9 Mar 2022 22:49:50 +0900 Subject: fix typo (#4370) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - `험수` to `함수` in line 27 --- files/ko/web/javascript/reference/classes/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ko/web') diff --git a/files/ko/web/javascript/reference/classes/index.html b/files/ko/web/javascript/reference/classes/index.html index 3e6bfc0a8f..5c435956a1 100644 --- a/files/ko/web/javascript/reference/classes/index.html +++ b/files/ko/web/javascript/reference/classes/index.html @@ -24,7 +24,7 @@ translation_of: Web/JavaScript/Reference/Classes
함수 선언과 클래스 선언의 중요한 차이점은 험수의 경우 정의하기 하기 전에 호출할 수 있지만, 클래스는 반드시 정의한 뒤에 사용할 수 있다는 점입니다. 다음 코드는 {{jsxref("ReferenceError")}}를 던질 것입니다.
+함수 선언과 클래스 선언의 중요한 차이점은 함수의 경우 정의하기 하기 전에 호출할 수 있지만, 클래스는 반드시 정의한 뒤에 사용할 수 있다는 점입니다. 다음 코드는 {{jsxref("ReferenceError")}}를 던질 것입니다.
const p = new Rectangle(); // ReferenceError -- cgit v1.2.3-54-g00ecf