From e3b67eeb79d9a1a0cb137b782ca0a7cc2b6dcbbf Mon Sep 17 00:00:00 2001 From: Derrek Gass Date: Thu, 8 Oct 2020 15:28:38 -0700 Subject: [PATCH] begin exercise 1 --- solutions/day-01/exercise1.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/solutions/day-01/exercise1.js b/solutions/day-01/exercise1.js index e69de29..cd6ee3b 100644 --- a/solutions/day-01/exercise1.js +++ b/solutions/day-01/exercise1.js @@ -0,0 +1,23 @@ +const countries = [ + 'Albania', + 'Bolivia', + 'Canada', + 'Denmark', + 'Ethiopia', + 'Finland', + 'Germany', + 'Hungary', + 'Ireland', + 'Japan', + 'Kenya', + ] + + const webTechs = [ + 'HTML', + 'CSS', + 'JavaScript', + 'React', + 'Redux', + 'Node', + 'MongoDB', + ] \ No newline at end of file