aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide/indexed_collections
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/guide/indexed_collections')
-rw-r--r--files/ko/web/javascript/guide/indexed_collections/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/guide/indexed_collections/index.html b/files/ko/web/javascript/guide/indexed_collections/index.html
index f048ddc752..dfd529b73a 100644
--- a/files/ko/web/javascript/guide/indexed_collections/index.html
+++ b/files/ko/web/javascript/guide/indexed_collections/index.html
@@ -7,7 +7,7 @@ translation_of: Web/JavaScript/Guide/Indexed_collections
<p class="summary">이번장에서는 인덱스값에 의해 정렬이 되는 데이터 자료구조에 대해 소개합니다.  배열과 유사 배열 생성자인 {{jsxref("Array")}} 객체와 {{jsxref("TypedArray")}} 객체 같은 생성자들을 포함합니다. </p>
-<h2 id="배열_객체"><font face="Consolas, Liberation Mono, Courier, monospace">배열 객체</font></h2>
+<h2 id="배열_객체">배열 객체</h2>
<p>배열은 이름과 인덱스로 참조되는 정렬된 값들의 집합입니다. 예를 들면, 숫자로 된 사원번호를 index로하여 사원명을 가지고 있는 emp라는 배열을 가질 수 있습니다. 그래서 emp[1]은 사원번호 1번, emp[2]는 사원번호 2번, 이런식으로 사원번호를 인덱스 값으로 가질 수 있는 것입니다.</p>