From 6c84c861611d5fad34dcae13489af0a7d063a2ed Mon Sep 17 00:00:00 2001 From: BrijeshVP <57172793+brijeshvp@users.noreply.github.com> Date: Sat, 31 Oct 2020 09:17:02 -0400 Subject: [PATCH] Update README.md --- arrays/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrays/README.md b/arrays/README.md index 0690816e..83ae60ce 100644 --- a/arrays/README.md +++ b/arrays/README.md @@ -1,6 +1,6 @@ # Arrays -Arrays are a fundamental part of programming. An array is a list of data. We can store a lot of data in one variable, which makes our code more readable and easier to understand. It also makes it much easier to perform functions on related data. +Arrays are a fundamental part of programming. An array is a list of data.It is a collection of similar elements. We can store a lot of data in one variable, which makes our code more readable and easier to understand. It also makes it much easier to perform functions on related data. The data in arrays are called **elements**. @@ -9,4 +9,4 @@ Here is a simple array: ```javascript // 1, 1, 2, 3, 5, and 8 are the elements in this array var numbers = [1, 1, 2, 3, 5, 8]; -``` \ No newline at end of file +```