From 40d2ed32c1df379ed08e36310e31175e34ff86c1 Mon Sep 17 00:00:00 2001 From: gunbir98 <32295013+gunbir98@users.noreply.github.com> Date: Sat, 28 Oct 2017 12:31:59 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7ec588c8..7d382376 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ Learn Javascript ====== +## About Javascript +JavaScript is a programming language used to make webpages interactive. It is what gives a page life—the interactive elements and animation that engage a user. If you've ever used a search box on a home page, checked a live baseball score on a news site, or watched a video, JavaScript is probably running through it. This book will teach you the basics of programming and Javascript. Whether you are an experienced programmer or not, this book is intended for everyone who wishes to learn the JavaScript programming language. From cf4bb017f6ecfe70b851ae6d1f423dc1bdddb3e0 Mon Sep 17 00:00:00 2001 From: gunbir98 <32295013+gunbir98@users.noreply.github.com> Date: Sun, 29 Oct 2017 11:56:38 +0530 Subject: [PATCH 2/2] line added --- arrays/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrays/README.md b/arrays/README.md index 0690816e..28f65c08 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 special variable, which can hold more than one value at a time also it is true that 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. 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 +```