diff --git a/glossary/array.md b/glossary/array.md new file mode 100644 index 000000000..22a89fc5d --- /dev/null +++ b/glossary/array.md @@ -0,0 +1,5 @@ +### 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.