Files
30-seconds-of-code/glossary/array.md
Angelos Chalaris d6d82e2291 Add glossary/array
2018-07-16 20:57:50 +03:00

6 lines
235 B
Markdown

### array
Arrays are used to store multiple values in a single variable.
Arrays are ordered and each item in an array has a numeric index associated with it.
JavaScript arrays are zero-indexed, meaning the first element's index is 0.