aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/배열
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:24 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:24 +0100
commitee778d6eea54935fd05022e0ba8c49456003381a (patch)
tree151a4cef804d8823cc8fc753b8edc693b7078241 /files/ko/glossary/배열
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.gz
translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.bz2
translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.zip
unslug ko: move
Diffstat (limited to 'files/ko/glossary/배열')
-rw-r--r--files/ko/glossary/배열/index.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/files/ko/glossary/배열/index.html b/files/ko/glossary/배열/index.html
deleted file mode 100644
index b7f3f63957..0000000000
--- a/files/ko/glossary/배열/index.html
+++ /dev/null
@@ -1,30 +0,0 @@
----
-title: 배열
-slug: Glossary/배열
-tags:
- - 배열
-translation_of: Glossary/array
----
-<p>배열은 데이터의 순서가 있는 집합  (  언어어 따라 {{Glossary("primitive")}} 또는  {{Glossary("object")}}) 이다. 배열은 하나의 변수의 여러개의 값들을 저장하는데 사용된다.  이것은 단 하나의 값을 저장하는 변수와 비교된다. </p>
-
-<p>어떤 숫자 배열의 각 항목에 붙어 있는데 그것을 숫자 인덱스라고 부른다. 숫자 인덱스는 항목에 접근하게 해준다. 자바스크립에서 배열은 인덱스 0 (zero) 에서 시작하고 여러  {{Glossary("Method", "methods")}} 로 조작될 수 있다. </p>
-
-<p>자바에서 배열은 아래와 같이 보인다:</p>
-
-<pre>var myArray = [1, 2, 3, 4];
-var catNamesArray = ["Jacqueline", "Sophia", "Autumn"];
-//자바스크립트에서 배열은 위에서 보는 바와 같아ㅣ 여러 데이터 유형을 가질 수 있다. </pre>
-
-<h2 id="더_알아보기">더 알아보기</h2>
-
-<h3 id="General_knowledge">General knowledge</h3>
-
-<ul>
- <li>{{Interwiki("wikipedia", "Array data structure", "Array")}} on Wikipedia</li>
-</ul>
-
-<h3 id="Technical_reference">Technical reference</h3>
-
-<ul>
- <li>JavaScript {{jsxref("Array")}} on MDN</li>
-</ul>