diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/nl/glossary/array/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/nl/glossary/array/index.html')
-rw-r--r-- | files/nl/glossary/array/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/files/nl/glossary/array/index.html b/files/nl/glossary/array/index.html new file mode 100644 index 0000000000..f0feac84ca --- /dev/null +++ b/files/nl/glossary/array/index.html @@ -0,0 +1,22 @@ +--- +title: Array +slug: Glossary/array +translation_of: Glossary/array +--- +<p>Een <em>array</em> is een geordende collectie van data ({{Glossary("primitive", "primitieve")}} of {{Glossary("object")}}). Elk data object van de array heeft een numerieke index gebaseerd op de positie in de array. Deze index kan gebruikt worden om de corresponderende {{glossary("value", "waarde")}} op te vragen. In {{glossary("JavaScript")}} zijn {{jsxref("array")}}s objecten die gemanipuleerd kunnen worden door middel van verschillende {{Glossary("Method", "methoden")}}.</p> + +<h2 id="Leer_meer">Leer meer</h2> + +<h3 id="Algemene_kennis">Algemene kennis</h3> + +<ul> + <li>{{Interwiki("wikipedia", " Array data structure ", "Array")}} op Wikipedia</li> +</ul> + +<h3 id="Technische_referentie">Technische referentie</h3> + +<ul> + <li>Javascript {{jsxref("Array")}} op MDN</li> +</ul> + +<p> </p> |