Skip to content

Commit 20559fe

Browse files
committed
fixing link
1 parent c1c4842 commit 20559fe

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

16_Day/16_day_json.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ const student = {
475475
isMarried:true,
476476
skills:['HTML', 'CSS', 'JS', 'React','Node', 'Python', ]
477477
}
478-
const text = `{
478+
const txt = `{
479479
"Alex": {
480480
"email": "alex@alex.com",
481481
"skills": [
@@ -589,8 +589,8 @@ const text = `{
589589

590590
### Exercises Level 3
591591

592-
1. Parse the *text* JSON to object.
593-
2. Find the the user who has many skills.
592+
1. Parse the *txt* JSON to object.
593+
2. Find the the user who has many skills from the variable stored in *txt*.
594594

595595
🎉 CONGRATULATIONS ! 🎉
596596

18_Day/18_day_promise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Promise {<resolved>: 4}
199199

200200
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.
201201

202-
How do we access the value from the promise? To access the value from the promise, will use await.
202+
How do we access the value from the promise? To access the value from the promise, we will use the keyword *await*.
203203

204204
```js
205205
const square = async function (n) {
File renamed without changes.

19_Day/19_day_starter/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h1>30DaysOfJavaScript:19 Day</h1>
1010
<h2>Writing Clean Code</h2>
1111

12-
<script src="./data/countries_data.js"></script>
12+
1313
<script src="./scripts/main.js"></script>
1414

1515
</body>

0 commit comments

Comments
 (0)