Skip to content

Commit 7122d5b

Browse files
authored
Update REVIEW.md
1 parent 4d2a6ef commit 7122d5b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Week2/REVIEW.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
```
44
This review covers:
5-
Intro JavaScript (What is it, where can you use it for)
5+
• Intro JavaScript (What is it, where can you use it for)
66
• Variables [var, let, const]
77
• Basic value types [Strings, Numbers, Arrays, Booleans]
88
• Operators
99
• Naming conventions
1010
```
1111

12-
1312
## Variables
1413

1514
A "variable" is a place where you can store information, such as a string, or a number. A variable has a _name_ (that you choose) and a _value_. New variables in JavaScript are declared using one of three keywords: `let`, `const`, or `var`.
@@ -36,4 +35,4 @@ Values are the "things" that you assign to a variable. All values have a type. I
3635

3736
In programming you will need to come up with appropriate names for your variables and functions.
3837

39-
[Read more...](../fundamentals/naming_conventions.md)
38+
[Read more...](../fundamentals/naming_conventions.md)

0 commit comments

Comments
 (0)