aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/array/entries/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/array/entries/index.html')
-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) {