fixing link

pull/63/head
Asabeneh 6 years ago
parent c1c4842c11
commit 20559fe38f

@ -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 ! 🎉

@ -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) {

@ -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>

Loading…
Cancel
Save