From 20559fe38fc918da9287d2cb02796a403ad33eac Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Mon, 20 Jan 2020 18:28:29 +0200 Subject: [PATCH] fixing link --- 16_Day/16_day_json.md | 6 +++--- 18_Day/18_day_promise.md | 2 +- 19_Day/{day_19_closure.md => 19_day_closure.md} | 0 19_Day/19_day_starter/index.html | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename 19_Day/{day_19_closure.md => 19_day_closure.md} (100%) diff --git a/16_Day/16_day_json.md b/16_Day/16_day_json.md index ff04882..41c38e9 100644 --- a/16_Day/16_day_json.md +++ b/16_Day/16_day_json.md @@ -475,7 +475,7 @@ const student = { isMarried:true, skills:['HTML', 'CSS', 'JS', 'React','Node', 'Python', ] } -const text = `{ +const txt = `{ "Alex": { "email": "alex@alex.com", "skills": [ @@ -589,8 +589,8 @@ const text = `{ ### Exercises Level 3 -1. Parse the *text* JSON to object. -2. Find the the user who has many skills. +1. Parse the *txt* JSON to object. +2. Find the the user who has many skills from the variable stored in *txt*. 🎉 CONGRATULATIONS ! 🎉 diff --git a/18_Day/18_day_promise.md b/18_Day/18_day_promise.md index 2d6346b..b225573 100644 --- a/18_Day/18_day_promise.md +++ b/18_Day/18_day_promise.md @@ -199,7 +199,7 @@ Promise {: 4} The word *async* in front of a function means that function will return a promise. The above square function instead of a value it returned a promise. -How do we access the value from the promise? To access the value from the promise, will use await. +How do we access the value from the promise? To access the value from the promise, we will use the keyword *await*. ```js const square = async function (n) { diff --git a/19_Day/day_19_closure.md b/19_Day/19_day_closure.md similarity index 100% rename from 19_Day/day_19_closure.md rename to 19_Day/19_day_closure.md diff --git a/19_Day/19_day_starter/index.html b/19_Day/19_day_starter/index.html index 588b444..a72d694 100644 --- a/19_Day/19_day_starter/index.html +++ b/19_Day/19_day_starter/index.html @@ -9,7 +9,7 @@

30DaysOfJavaScript:19 Day

Writing Clean Code

- +