aboutsummaryrefslogtreecommitdiff
path: root/files/es/glossary/arreglos/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/glossary/arreglos/index.html')
-rw-r--r--files/es/glossary/arreglos/index.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/files/es/glossary/arreglos/index.html b/files/es/glossary/arreglos/index.html
deleted file mode 100644
index 74b22dbedc..0000000000
--- a/files/es/glossary/arreglos/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: Arreglos (Matrices)
-slug: Glossary/Arreglos
-tags:
- - Arreglos
- - CodificaciónScripting
- - Glosario
- - JavaScript
- - Matriz
- - programacion
-translation_of: Glossary/array
----
-<p>Un arreglo (matriz<em>)</em> es una colección ordenada de datos (tanto {{glossary("Primitivo", "primitivos")}} u {{glossary("Object", "objetos")}} dependiendo del lenguaje). Los arreglos (matrices<em>)</em> se emplean para almacenar multiples valores en una sola variable, frente a las variables que sólo pueden almacenar un valor (por cada variable).</p>
-
-<p>Cada elemento del arreglo (matriz) <em> </em>tiene un número al que está asociado, llamado "<strong>índice numérico"</strong> (numeric index)<strong>,</strong> que permite acceder a él.</p>
-
-<p>En JavaScript, los arreglos (matrices) comienzan a partir del índice cero y pueden ser manipulados con varios {{glossary("Método", "métodos")}}.</p>
-
-<p>Un arreglo (matriz<em>)</em> en JavaScript se ve de esta forma:</p>
-
-<pre><code>var myArray = [1, 2, 3, 4];
-
-var catNamesArray = ["Jacqueline", "Sophia", "Autumn"];
-
-//Los arreglos en Javascript pueden guardar distintos tipos de datos como se muestra anteriormente
-</code>
-</pre>
-
-<h2 id="Saber_más">Saber más</h2>
-
-<h3 id="Conocimiento_general">Conocimiento general</h3>
-
-<ul>
- <li>{{Interwiki("wikipedia", "Array data structure", "Array")}} en Wikipedia</li>
-</ul>
-
-<h3 id="Referencia_técnica">Referencia técnica</h3>
-
-<ul>
- <li>JavaScript {{jsxref("Array")}} en MDN</li>
-</ul>