aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide/indexed_collections
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-12-28 21:39:28 +0900
committerGitHub <noreply@github.com>2021-12-28 21:39:28 +0900
commit647233140ae70dc89c1fc05e599aac895ac8eec4 (patch)
tree40355be40d1f64175587f1daa2ef8e7124194a28 /files/ko/web/javascript/guide/indexed_collections
parent313b18c1697faa9bf94c0892e994e39dacdf8dd0 (diff)
downloadtranslated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.tar.gz
translated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.tar.bz2
translated-content-647233140ae70dc89c1fc05e599aac895ac8eec4.zip
Remove all <font> from Web/JavaScript (#3349)
* Remove occurrences of <font> from Web/JavaScript * [CRON] sync translated content Co-authored-by: MDN <actions@users.noreply.github.com> Co-authored-by: Masahiro FUJIMOTO <mfujimot@gmail.com>
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>