it begins

This commit is contained in:
Tommy Parnell
2022-05-17 18:59:04 -04:00
committed by GitHub
parent c899315910
commit d31eeb12e6
2 changed files with 12 additions and 1 deletions

6
Arrays.md Normal file
View File

@@ -0,0 +1,6 @@
You can think of an array as a list of things. For example a shopping list might look like
```js
["Apple", "Orange"]
```

View File

@@ -1,2 +1,7 @@
# Javascript-cheatsheet # Javascript-cheatsheet
A cheatsheet of concepts new developers ask me for A cheatsheet of concepts new developers ask me for. These are written to be 99% correct, some concepts/nuances might be omitted so new people don't get overwhelmed.
## TOC
1. [Arrays](./Arrays.md)