From cf6bd3d87e6c6d6c70dc309dbeb76a6254c63025 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 16 Jul 2018 20:57:50 +0300 Subject: [PATCH] Add glossary/array --- glossary/array.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 glossary/array.md 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.