Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This book will teach you the basics of programming and Javascript. Whether you a

![Screen](./assets/intro.png)

JavaScript (*JS for short*) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages.
JavaScript (*abbreviated as JS*) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages.
10 changes: 9 additions & 1 deletion arrays/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@ 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];
```
```
Here is a simple 2-d array:


var items = [
[1, 2],
[3, 4],
[5, 6]
];