From 4ac262292434ab02081395c88241cdb074081bac Mon Sep 17 00:00:00 2001 From: marciano Date: Mon, 19 Aug 2019 18:42:40 +0200 Subject: [PATCH 1/4] Added a small clarification to the homework assignment 9 --- Week3/MAKEME.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index 8f88e9e15..31e0fa997 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -104,7 +104,8 @@ let favoriteAnimals = ["blowfish", "capricorn", "giraffe"]; 8. How do you get the third element from that list? -9. Change the function `vehicle` to use the list of question 7. So that `vehicle("green", 3, 1)` prints "a green new bike". +9. Change the function `vehicle` to use the list of question 7. So that `vehicle("green", 3, 1)` prints "a green new bike". + > Hint, it should use the `code` to get the value from the array. So `vehicle("green", 2, 1)` prints "a green new caravan". 10. Use the list of vehicles to write an advertisement. So that it prints something like: `"Amazing Joe's Garage, we service cars, motorbikes, caravans and bikes."`. (Hint: use a `for` loop.) From b607a755fecaab6453e4570f4e22f317847685b0 Mon Sep 17 00:00:00 2001 From: marciano Date: Mon, 19 Aug 2019 18:44:34 +0200 Subject: [PATCH 2/4] Small text consistency --- Week3/MAKEME.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index 31e0fa997..f910a2a8b 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -105,7 +105,7 @@ let favoriteAnimals = ["blowfish", "capricorn", "giraffe"]; 8. How do you get the third element from that list? 9. Change the function `vehicle` to use the list of question 7. So that `vehicle("green", 3, 1)` prints "a green new bike". - > Hint, it should use the `code` to get the value from the array. So `vehicle("green", 2, 1)` prints "a green new caravan". + > Hint, it should use the `code` to get the value from the list. So `vehicle("green", 2, 1)` prints "a green new caravan". 10. Use the list of vehicles to write an advertisement. So that it prints something like: `"Amazing Joe's Garage, we service cars, motorbikes, caravans and bikes."`. (Hint: use a `for` loop.) From 54eda88d52e25816994b34b56e72363c01c552a8 Mon Sep 17 00:00:00 2001 From: marciano Date: Mon, 19 Aug 2019 19:17:36 +0200 Subject: [PATCH 3/4] Small hint for assignment 13 (and 14) --- Week3/MAKEME.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index f910a2a8b..43c392675 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -116,6 +116,7 @@ let favoriteAnimals = ["blowfish", "capricorn", "giraffe"]; 12. Create an empty object. 13. Create an object that contains the teachers that you have had so far for the different modules. + > Hint, use a list 14. Add a property to the object you just created that contains the languages that they have taught you. From 882ce5802dff3950d76ab73afbcedb2e2bc8a007 Mon Sep 17 00:00:00 2001 From: marcianoviereck Date: Thu, 22 Aug 2019 17:25:07 +0200 Subject: [PATCH 4/4] Processed review comment --- Week3/MAKEME.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Week3/MAKEME.md b/Week3/MAKEME.md index 43c392675..f910a2a8b 100644 --- a/Week3/MAKEME.md +++ b/Week3/MAKEME.md @@ -116,7 +116,6 @@ let favoriteAnimals = ["blowfish", "capricorn", "giraffe"]; 12. Create an empty object. 13. Create an object that contains the teachers that you have had so far for the different modules. - > Hint, use a list 14. Add a property to the object you just created that contains the languages that they have taught you.