added a fundamental on conditional execution · hnnhack/JavaScript2@18a034e · GitHub
Skip to content

Commit 18a034e

Browse files
committed
added a fundamental on conditional execution
1 parent 27d4c47 commit 18a034e

4 files changed

Lines changed: 189 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion

Week3/MAKEME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Provide feedback to the homework of last week to one of your fellow students. Yo
3131
- Go through the topics of this week:
3232
- Git work flow
3333
- [Advanced data types (Objects)](../fundamentals/objects.md)
34-
- Conditions
34+
- [Conditional execution](../fundamentals/conditional_execution.md)
3535
- [Statements vs Expressions](../fundamentals/statements_expressions.md)
3636
- Loops (for/while)
3737
- [Functions](../fundamentals/functions.md)
@@ -187,7 +187,7 @@ Please make sure you REALLY understand the exercises below:
187187
188188
_Deadline Sunday morning_
189189
190-
Go trough the reading material in the [README.md](/Week2/README.md) to prepare for your next class
190+
Go through the reading material in the [README.md](/Week2/README.md) to prepare for your next class
191191
192192
```
193193
How to hand in your homework:

Week7/MAKEME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Staff {
7373
// Initialize the objects
7474
// by pick your favorite movie from http://www.imdb.com/
7575
// and make sure that the following actions work.
76-
console.log(InstanceMovie.getStarts().map(actor => `${actor.getName()} ${actor.getAge}`));
76+
console.log(InstanceMovie.getStars().map(actor => `${actor.getName()} ${actor.getAge()}`));
7777
const director = InstanceMovie.getDirector();
7878
console.log(`Director: ${director.getName()}`);
7979
// Be creative with this let's see what you come up with :-)
Lines changed: 185 additions & 0 deletions

0 commit comments

Comments
 (0)