Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 657df04

Browse files
committed
added links to special characters and their names
1 parent 2785508 commit 657df04

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Here you can find course content and homework for the JavaScript 1 module
88
|Week|Topic|Read|Homework|
99
|----|-----|----|--------|
1010
|1.|Git Session with Unmesh|[Reading Week 1](/Week1/README.md) | [Homework Week 1](/Week1/MAKEME.md)|
11-
|2.|• Intro JavaScript (What is it, where can you use it for)<br>• [Variables (var, let, const)](../../../fundamentals/blob/master/fundamentals/variables.md)<br>• [Basic Data types (Strings, Numbers, Arrays, Booleans)](../../../fundamentals/blob/master/fundamentals/values.md)<br>• [Operators](../../../fundamentals/blob/master/fundamentals/operators.md)<br>• [Naming conventions](../../../fundamentals/blob/master/fundamentals/naming_conventions.md)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)|
11+
|2.|• Intro JavaScript (What is it, where can you use it for)<br>• [Variables (var, let, const)](../../../fundamentals/blob/master/fundamentals/variables.md)<br>• [Basic Data types (Strings, Numbers, Arrays, Booleans)](../../../fundamentals/blob/master/fundamentals/values.md)<br>• [Operators](../../../fundamentals/blob/master/fundamentals/operators.md)<br>• [Special characters and their names](../../../fundamentals/names_of_special_characters.md)<br>• [Naming conventions](../../../fundamentals/blob/master/fundamentals/naming_conventions.md)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)|
1212
|3.|• Git work flow :smiling_imp:<br>• [Advanced data types (objects)](../../../fundamentals/blob/master/fundamentals/objects.md) <br>• [Conditional execution](../../../fundamentals/blob/master/fundamentals/conditional_execution.md) <br>• [Statements vs Expressions](../../../fundamentals/blob/master/fundamentals/statements_expressions.md)<br> • [Loops (for/while)](../../../fundamentals/blob/master/fundamentals/loops.md)<br>• [Functions](../../../fundamentals/blob/master/fundamentals/functions.md) <br>• [Scope](../../../fundamentals/blob/master/fundamentals/scope.md)|[Reading Week 3](/Week3/README.md)|[Homework Week 3](/Week3/MAKEME.md)|
1313

1414
__Kind note:__

Week2/MAKEME.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,5 @@ If you solve the FreeCodeCamp challenges and they are new concepts to you and yo
177177
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
178178
- [Basic value types](./../../../../fundamentals/blob/master/fundamentals/values.md)
179179
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
180+
- [Special characters and their names](./../../../fundamentals/names_of_special_characters.md)
180181
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

Week2/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ Only watch the below chapters:
3535

3636
:star: You can also already go through the topics of the upcoming lecture. :star:
3737

38-
- Intro JavaScript (What is it, where can you use it for)
39-
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)<br>
40-
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)<br>
41-
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)<br>
38+
39+
- Intro JavaScript (What is it, where can you use it for)
40+
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)
41+
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)
42+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
43+
- [Special characters and their names](./../../../fundamentals/names_of_special_characters.md)
4244
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
4345

4446
_Please go through the material and come to class prepared!_

Week3/MAKEME.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Provide feedback to the homework of last week to one of your fellow students. Yo
2626
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
2727
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
2828
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
29+
- [Special characters and their names](./../../../fundamentals/names_of_special_characters.md)
2930
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
3031

3132
- Go through the topics of this week:
@@ -112,7 +113,7 @@ let favoriteAnimals = ['blowfish', 'capricorn', 'giraffe'];
112113
console.log("yes")
113114
} else {
114115
console.log("no")
115-
}
116+
};
116117
```
117118

118119
6. Create a function called `vehicle`, like before, but takes another parameter called `age`, so that `vehicle("blue", 1, 5)` prints *'a blue used car'*

Week3/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Review the topics of week 2:
4141
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
4242
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
4343
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
44+
- [Special characters and their names](./../../../fundamentals/names_of_special_characters.md)
4445
- [Naming conventions](./../../../../fundamentals/naming_conventions.md)
4546

4647
_Please go through the material and come to class prepared!_

0 commit comments

Comments
 (0)