aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/isfinite/index.html
diff options
context:
space:
mode:
authorDevJo <sa02045@naver.com>2021-12-13 19:50:12 +0900
committerKyle <mkitigy@gmail.com>2021-12-27 07:55:15 +0900
commitc581ac7c5b0ba9552a0e34f467c4f62050e0c455 (patch)
tree19b19a6799f4363e601ab6b24a009701e3dc186c /files/ko/web/javascript/reference/global_objects/isfinite/index.html
parent06bc06d023186d8d36f90c88e76a9e4c03446534 (diff)
downloadtranslated-content-c581ac7c5b0ba9552a0e34f467c4f62050e0c455.tar.gz
translated-content-c581ac7c5b0ba9552a0e34f467c4f62050e0c455.tar.bz2
translated-content-c581ac7c5b0ba9552a0e34f467c4f62050e0c455.zip
remove: notranslate in web/javascript/reference/global_objects
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