aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/isfinite/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/isfinite/index.html')
-rw-r--r--files/ko/web/javascript/reference/global_objects/isfinite/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/isfinite/index.html b/files/ko/web/javascript/reference/global_objects/isfinite/index.html
index 834389e2f7..257f22cf80 100644
--- a/files/ko/web/javascript/reference/global_objects/isfinite/index.html
+++ b/files/ko/web/javascript/reference/global_objects/isfinite/index.html
@@ -16,7 +16,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/isFinite
<h2 id="구문">구문</h2>
-<pre class="syntaxbox notranslate">isFinite(<em>testValue</em>)</pre>
+<pre class="syntaxbox">isFinite(<em>testValue</em>)</pre>
<h3 id="매개변수">매개변수</h3>
@@ -39,7 +39,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/isFinite
<h3 id="isFinite_사용하기"><code>isFinite()</code> 사용하기</h3>
-<pre class="brush: js notranslate">isFinite(Infinity); // false
+<pre class="brush: js">isFinite(Infinity); // false
isFinite(NaN); // false
isFinite(-Infinity); // false