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

Skip to content

Commit 6f1e489

Browse files
committed
💃 let's fix some links
1 parent 657df04 commit 6f1e489

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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>• [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)|
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/blob/master/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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,5 +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)
180+
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
181181
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

‎Week2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Only watch the below chapters:
4040
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)
4141
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)
4242
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
43-
- [Special characters and their names](./../../../fundamentals/names_of_special_characters.md)
43+
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
4444
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
4545

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

‎Week3/MAKEME.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +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)
29+
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
3030
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
3131

3232
- Go through the topics of this week:
@@ -110,10 +110,10 @@ let favoriteAnimals = ['blowfish', 'capricorn', 'giraffe'];
110110

111111
```js
112112
if (3 === 3) {
113-
console.log("yes")
113+
console.log("yes");
114114
} else {
115-
console.log("no")
116-
};
115+
console.log("no");
116+
}
117117
```
118118

119119
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ 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)
45-
- [Naming conventions](./../../../../fundamentals/naming_conventions.md)
44+
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
45+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
4646

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

0 commit comments

Comments
 (0)