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

Skip to content

Commit d6bcdb0

Browse files
author
Noer Paanakker
committed
finished content readings w1/w2
1 parent dab8393 commit d6bcdb0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ Did you finish the module? Good job! You're doing great!
7474
If you feel ready for the next challenge, click [here](https://www.github.com/HackYourFuture/JavaScript2) to go to JavaScript2!
7575

7676
_The HackYourFuture curriculum is subject to CC BY copyright. This means you can freely use our materials, but just make sure to give us credit for it :)_
77+
78+
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

Week1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ These are the topics for week 1:
2323

2424
### Introduction
2525

26-
Programming is giving a computer instructions in order to solve a problem, written in a language it can understand. We don't necessarily need computers to solve problems, but we use them because they provide several benefits:
26+
Programming is giving a computer instructions written in a language it can understand, in order to solve a problem. We don't necessarily need computers to solve problems, but we use them because they provide several benefits:
2727

2828
1. They are fast
2929
2. Cheap to use
@@ -138,7 +138,7 @@ This is something that you will learn when you start coding yourself. If you can
138138

139139
A data type is a category of data. It tells the code interpreter what kind of data it is reading so it knows how to optimally store it in memory. An example of this is the Number type. In most programming languages, when it reads the number `2` it doesn't know that it's a number. It needs to be told it is so. In JavaScript, however, that is assumed.
140140

141-
### 6 Basic types
141+
## 6 Basic types
142142

143143
There are about 6 basic data types in JavaScript. String, Number, Boolean, Object, Array, and Function. You can read more about them in the following article:
144144

Week2/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ These are the topics for week 2:
1515

1616
A lot of programming is nothing different from regular human communication. When conversing with another person, we often use language in various ways: to ask questions, make statements or simply express yourself about what's going on.
1717

18-
This is the same in programming.
18+
This is the same in programming. A difference is that it's done in abstract code. Another difference is that a programming statement is an instruction, while a programming expression leads directly to a value (and are usually different parts of a statement).
1919

20-
[TO BE CONTINUED!]
20+
To learn more about statements vs. expression, research the following resources:
2121

22-
To read more about statements vs. expression, read the following:
23-
[Statements vs. Expressions](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/statements_expressions.md)
22+
- [Statements vs. Expressions](https://github.com/HackYourFuture/fundamentals/blob/master/fundamentals/statements_expressions.md)
23+
- [Expressions vs. Statements in JS](https://www.youtube.com/watch?v=WVyCrI1cHi8)
2424

2525
## 2. Loops
2626

0 commit comments

Comments
 (0)