diff options
Diffstat (limited to 'files/ko/glossary/배열/index.html')
-rw-r--r-- | files/ko/glossary/배열/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/files/ko/glossary/배열/index.html b/files/ko/glossary/배열/index.html new file mode 100644 index 0000000000..b7f3f63957 --- /dev/null +++ b/files/ko/glossary/배열/index.html @@ -0,0 +1,30 @@ +--- +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> |