aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/array
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/array
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/array')
-rw-r--r--files/ko/web/javascript/reference/global_objects/array/entries/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/array/entries/index.html b/files/ko/web/javascript/reference/global_objects/array/entries/index.html
index 5b4b8eee78..71d7c8d48f 100644
--- a/files/ko/web/javascript/reference/global_objects/array/entries/index.html
+++ b/files/ko/web/javascript/reference/global_objects/array/entries/index.html
@@ -18,7 +18,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries
<h2 id="구문">구문</h2>
-<pre class="syntaxbox notranslate"><code><var>arr</var>.entries()</code>
+<pre class="syntaxbox"><code><var>arr</var>.entries()</code>
</pre>
<h3 id="반환_값">반환 값</h3>
@@ -29,7 +29,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries
<h3 id="인덱스와_요소_이터레이팅">인덱스와 요소 이터레이팅</h3>
-<pre class="notranslate">const a = ['a', 'b', 'c'];
+<pre>const a = ['a', 'b', 'c'];
for (const [index, element] of a.entries())
console.log(index, element);
@@ -40,7 +40,7 @@ for (const [index, element] of a.entries())
<h3 id="for…of_루프_사용"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of">for…of</a> 루프 사용</h3>
-<pre class="brush:js notranslate">var a = ['a', 'b', 'c'];
+<pre class="brush:js">var a = ['a', 'b', 'c'];
var iterator = a.entries();
for (let e of iterator) {