-
Notifications
You must be signed in to change notification settings - Fork 0
/
day28.html
42 lines (38 loc) · 1.06 KB
/
day28.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Handling json File using Js</h1>
<h3>Rules for Json</h3>
<ul>
<li>Single Quotes are not allowed</li>
<li>It stores key value</li>
</ul>
<script>
console.log("Hello")
fetch("first.json")
.then((response)=>{
console.log(response.status)
console.log(response.ok)
return response.json()
})
.then((data)=>{
console.log(data)
console.log(data.name)
arr = data["family-member"];
console.log("Printing Objects inside objects and name property : ", data["myObj"].name)
console.log("Printing Objects inside objects : ", data["myObj"])
return arr;
}).then((arr)=>{
arr.forEach(element => {
console.log(element);
})
})
// Print the family Memeber
</script>
</body>
</html>