aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/array
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
commit218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch)
treea9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/glossary/array
parent074785cea106179cb3305637055ab0a009ca74f2 (diff)
downloadtranslated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip
initial commit
Diffstat (limited to 'files/zh-tw/glossary/array')
-rw-r--r--files/zh-tw/glossary/array/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/array/index.html b/files/zh-tw/glossary/array/index.html
new file mode 100644
index 0000000000..fc8d84a3fd
--- /dev/null
+++ b/files/zh-tw/glossary/array/index.html
@@ -0,0 +1,31 @@
+---
+title: 陣列
+slug: Glossary/array
+tags:
+ - 術語表
+ - 陣列
+translation_of: Glossary/array
+---
+<p>陣列是個有序資料的集合(按程式語言不同,資料型態可以是{{Glossary("primitive","原始型別")}}或{{Glossary("object","物件")}})。陣列是用來把複數的值存進一個變數裡。與只能存一個值的變數,呈現強烈的對比。</p>
+
+<p>每一個陣列中的元素,都附有一個能讀相對應元素的數字,稱做數字索引(numeric index)。在 JavaScript 中,陣列的索引開始於數字 0 且能透過不同的{{Glossary("Method", "方法")}}來操作。</p>
+
+<p>JavaScript 中的陣列:</p>
+
+<pre>var myArray = [1, 2, 3, 4];
+var catNamesArray = ["Jacqueline", "Sophia", "Autumn"];
+//Arrays in JavaScript can hold different types of data, as shown above.</pre>
+
+<h2 id="了解更多">了解更多</h2>
+
+<h3 id="常規知識">常規知識</h3>
+
+<ul>
+ <li>維基百科的{{Interwiki("wikipedia", "陣列")}}</li>
+</ul>
+
+<h3 id="技術參考">技術參考</h3>
+
+<ul>
+ <li>MDN 的 JavaScript {{jsxref("Array")}}</li>
+</ul>