Skip to content

Commit

Permalink
fixing link
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jan 20, 2020
1 parent c1c4842 commit 20559fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions 16_Day/16_day_json.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ const student = {
isMarried:true,
skills:['HTML', 'CSS', 'JS', 'React','Node', 'Python', ]
}
const text = `{
const txt = `{
"Alex": {
"email": "[email protected]",
"skills": [
Expand Down Expand Up @@ -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 ! 🎉

Expand Down
2 changes: 1 addition & 1 deletion 18_Day/18_day_promise.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Promise {<resolved>: 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) {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion 19_Day/19_day_starter/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<h1>30DaysOfJavaScript:19 Day</h1>
<h2>Writing Clean Code</h2>

<script src="./data/countries_data.js"></script>

<script src="./scripts/main.js"></script>

</body>
Expand Down

0 comments on commit 20559fe

Please sign in to comment.