From 571cf5967c4c71f28d5a63b071bcfc05d05782e4 Mon Sep 17 00:00:00 2001 From: wlaPon <51115329+wlaPon@users.noreply.github.com> Date: Thu, 11 Feb 2021 17:22:59 +0100 Subject: [PATCH] fixed some typos fixed some typos --- 10_Day_Sets_and_Maps/10_day_Sets_and_Maps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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..9273928 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 @@ -246,7 +246,7 @@ Set(6) {1, 2, 3, 4, 5,6} ### Intersection of sets -To find an intersection of two sets can be achieved using filter. Lets find the union of set A and set B (A ∩ B) +To find an intersection of two sets can be achieved using filter. Lets find the Intersection of set A and set B (A ∩ B) ```js let a = [1, 2, 3, 4, 5] @@ -391,8 +391,8 @@ Norway Oslo ### Exercises:Level 1 ```js -const a = {4, 5, 8, 9} -const b = {3, 4, 5, 7} +const a = [4, 5, 8, 9] +const b = [3, 4, 5, 7] const countries = ['Finland', 'Sweden', 'Norway'] ```