aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/array
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/array')
-rw-r--r--files/ko/web/javascript/reference/global_objects/array/entries/index.html4
-rw-r--r--files/ko/web/javascript/reference/global_objects/array/flatmap/index.html4
-rw-r--r--files/ko/web/javascript/reference/global_objects/array/slice/index.html2
3 files changed, 0 insertions, 10 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 316886c261..5b4b8eee78 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
@@ -16,10 +16,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries
<p>{{EmbedInteractiveExample("pages/js/array-entries.html")}}</p>
-<div class="hidden">
-<p>The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</p>
-</div>
-
<h2 id="구문">구문</h2>
<pre class="syntaxbox notranslate"><code><var>arr</var>.entries()</code>
diff --git a/files/ko/web/javascript/reference/global_objects/array/flatmap/index.html b/files/ko/web/javascript/reference/global_objects/array/flatmap/index.html
index ceaa87f4b2..93d92580b8 100644
--- a/files/ko/web/javascript/reference/global_objects/array/flatmap/index.html
+++ b/files/ko/web/javascript/reference/global_objects/array/flatmap/index.html
@@ -14,10 +14,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/flatMap
<p><code><strong>flatMap()</strong></code> 메서드는 먼저 매핑함수를 사용해 각 엘리먼트에 대해 map 수행 후, 결과를 새로운 배열로 평탄화합니다. 이는 깊이 1의 <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat">flat</a> 이 뒤따르는 <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map">map</a> 과 동일하지만, <code>flatMap</code> 은 아주 유용하며 둘을 하나의 메소드로 병합할 때 조금 더 효율적입니다.</p>
-<p class="hidden">\{{EmbedInteractiveExample("pages/js/array-flatmap.html")}}</p>
-
-
-
<h2 id="구문">구문</h2>
<pre class="syntaxbox"><var>arr</var>.flatMap(<var>callback(currentValue[, index[, array]])</var>[, <var>thisArg</var>])</pre>
diff --git a/files/ko/web/javascript/reference/global_objects/array/slice/index.html b/files/ko/web/javascript/reference/global_objects/array/slice/index.html
index a5264b1f86..aebc7b1805 100644
--- a/files/ko/web/javascript/reference/global_objects/array/slice/index.html
+++ b/files/ko/web/javascript/reference/global_objects/array/slice/index.html
@@ -15,8 +15,6 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/slice
<div>{{EmbedInteractiveExample("pages/js/array-slice.html")}}</div>
-<p class="hidden">The source for this interactive demo is stored in a GitHub repository. If you'd like to contribute to the interactive demo project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</p>
-
<h2 id="구문">구문</h2>
<pre class="syntaxbox"><var>arr</var>.slice([<em>begin</em>[, <em>end</em>]])