Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Unsere Freiwilligen haben diesen Artikel noch nicht in Deutsch übersetzt. Machen Sie mit und helfen Sie, das zu erledigen!

An array is an ordered collection of data (either primitive or object depending upon the language). Arrays are used to store multiple values in a single variable. This is compared to a variable that can only store one value. 

Each item in an array has a number attached to it, called a numeric index, that allows you to access it. In JavaScript, array's start at index zero and can be manipulated with various methods

What an array in JavaScript looks like:

var myArray = [1, 2, 3, 4];

var catNamesArray = ["Jacqueline", "Sophia", "Autumn"];

//Array's in JavaScript can hold different types of data, as shown above.

 

Learn more

General knowledge

Technical reference

  • Javascript Array on MDN

 

Schlagwörter des Dokuments und Mitwirkende

 Mitwirkende an dieser Seite: SnoopyRules, klez, Andrew_Pfeiffer, Jeremie, hbloomer, alispivak, panaggio
 Zuletzt aktualisiert von: SnoopyRules,