From c581ac7c5b0ba9552a0e34f467c4f62050e0c455 Mon Sep 17 00:00:00 2001 From: DevJo Date: Mon, 13 Dec 2021 19:50:12 +0900 Subject: remove: notranslate in web/javascript/reference/global_objects --- .../javascript/reference/global_objects/array/entries/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'files/ko/web/javascript/reference/global_objects/array') 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

구문

-
arr.entries()
+
arr.entries()
 

반환 값

@@ -29,7 +29,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries

인덱스와 요소 이터레이팅

-
const a = ['a', 'b', 'c'];
+
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())
 
 

for…of 루프 사용

-
var a = ['a', 'b', 'c'];
+
var a = ['a', 'b', 'c'];
 var iterator = a.entries();
 
 for (let e of iterator) {
-- 
cgit v1.2.3-54-g00ecf