aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference')
-rw-r--r--files/ko/web/javascript/reference/classes/index.html2
-rw-r--r--files/ko/web/javascript/reference/global_objects/number/tofixed/index.html4
2 files changed, 3 insertions, 3 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
diff --git a/files/ko/web/javascript/reference/global_objects/number/tofixed/index.html b/files/ko/web/javascript/reference/global_objects/number/tofixed/index.html
index cf383f2265..28ffe38198 100644
--- a/files/ko/web/javascript/reference/global_objects/number/tofixed/index.html
+++ b/files/ko/web/javascript/reference/global_objects/number/tofixed/index.html
@@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Number/toFixed
---
<div>{{JSRef}}</div>
-<p><code><strong>toFixed()</strong></code> 메서드는 숫자를 고정 소수점 표기법으로 표기해 반환합니다.</p>
+<p><code><strong>toFixed()</strong></code> 메서드는 숫자를 고정 소수점 표기법(fixed-point notation)으로 표시합니다.</p>
<div>{{EmbedInteractiveExample("pages/js/number-tofixed.html")}}</div>
@@ -30,7 +30,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Number/toFixed
<h3 id="반환_값">반환 값</h3>
-<p>고정 소수점 표기법을 사용하여 나타낸 수.</p>
+<p>고정 소수점 표기법을 사용하여 나타낸 수를 문자열로 바꾼 값.</p>
<h3 id="예외">예외</h3>