From 965df37184df259e3d0ddf581d6b0362e8af58c7 Mon Sep 17 00:00:00 2001 From: Tuomo Date: Mon, 12 Oct 2020 21:25:22 +0300 Subject: [PATCH] Fix linking to the previous and the next day Also fix the the output codeblock for the excercise Level 3. --- 10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md b/10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md index 6d0064c..d478af9 100644 --- a/10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md +++ b/10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md @@ -434,18 +434,16 @@ const countries = ['Finland', 'Sweden', 'Norway'] // Your output should look like this console.log(mostSpokenLanguages(countries, 3)) ``` - -[ -{'English':91}, -{'French':45}, -{'Arabic':25} -] - -``` + ```js + [ + { 'English': 91 }, + { 'French': 45 }, + { 'Arabic': 25 } + ] + ``` 🎉 CONGRATULATIONS ! 🎉 [<< Day 9](../09_Day_Higher_order_functions/09_day_higher_order_functions.md) | [Day 11>>](../11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md) -```