aboutsummaryrefslogtreecommitdiff
path: root/files/ko
diff options
context:
space:
mode:
author정현수 <54893898+junghyeonsu@users.noreply.github.com>2022-03-09 22:49:50 +0900
committerGitHub <noreply@github.com>2022-03-09 22:49:50 +0900
commitc04a0d2274c4d4a9519744f89d305f11a860e2dd (patch)
tree0a7b0b777c68d7b3a11952c0749d9ccf84baf029 /files/ko
parent5f1fe948720f1ab0143c9a22d89c753d76081627 (diff)
downloadtranslated-content-c04a0d2274c4d4a9519744f89d305f11a860e2dd.tar.gz
translated-content-c04a0d2274c4d4a9519744f89d305f11a860e2dd.tar.bz2
translated-content-c04a0d2274c4d4a9519744f89d305f11a860e2dd.zip
fix typo (#4370)
- `험수` to `함수` in line 27
Diffstat (limited to 'files/ko')
-rw-r--r--files/ko/web/javascript/reference/classes/index.html2
1 files changed, 1 insertions, 1 deletions
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
<h4 id="Hoisting">Hoisting</h4>
-<p><strong>함수 선언</strong>과 <strong>클래스 선언</strong>의 중요한 차이점은 험수의 경우 정의하기 하기 전에 호출할 수 있지만, 클래스는 반드시 정의한 뒤에 사용할 수 있다는 점입니다. 다음 코드는 {{jsxref("ReferenceError")}}를 던질 것입니다.</p>
+<p><strong>함수 선언</strong>과 <strong>클래스 선언</strong>의 중요한 차이점은 함수의 경우 정의하기 하기 전에 호출할 수 있지만, 클래스는 반드시 정의한 뒤에 사용할 수 있다는 점입니다. 다음 코드는 {{jsxref("ReferenceError")}}를 던질 것입니다.</p>
<pre class="brush: js example-bad ">const p = new Rectangle(); // ReferenceError