Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
Merged
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 @@ -8,7 +8,7 @@ Here you can find course content and homework for the JavaScript 1 module
|Week|Topic|Read|Homework|
|----|-----|----|--------|
|1.|Git Session with Unmesh|[Reading Week 1](/Week1/README.md) | [Homework Week 1](/Week1/MAKEME.md)|
|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)|
|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/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)|
|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)|

__Kind note:__
Expand Down
1 change: 1 addition & 0 deletions Week2/MAKEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,5 @@ If you solve the FreeCodeCamp challenges and they are new concepts to you and yo
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
- [Basic value types](./../../../../fundamentals/blob/master/fundamentals/values.md)
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
10 changes: 6 additions & 4 deletions Week2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ Only watch the below chapters:

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

- Intro JavaScript (What is it, where can you use it for)
- [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>

- Intro JavaScript (What is it, where can you use it for)
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

_Please go through the material and come to class prepared!_
Expand Down
5 changes: 3 additions & 2 deletions Week3/MAKEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Provide feedback to the homework of last week to one of your fellow students. Yo
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

- Go through the topics of this week:
Expand Down Expand Up @@ -109,9 +110,9 @@ let favoriteAnimals = ['blowfish', 'capricorn', 'giraffe'];

```js
if (3 === 3) {
console.log("yes")
console.log("yes");
} else {
console.log("no")
console.log("no");
}
```

Expand Down
3 changes: 2 additions & 1 deletion Week3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ Review the topics of week 2:
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
- [Naming conventions](./../../../../fundamentals/naming_conventions.md)
- [Special characters and their names](./../../../../fundamentals/blob/master/fundamentals/names_of_special_characters.md)
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

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

Expand Down