Skip to content

Commit 5f92384

Browse files
problem 58 initialization completed
1 parent fd01bae commit 5f92384

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

problem58/problem.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## Problem 58:
2+
3+
```
4+
let students = {
5+
2222: {
6+
name: "Jack",
7+
section: "C",
8+
class: "IX",
9+
address: {
10+
"building no": 12,
11+
street: "St. Jonson",
12+
city: "Petersburg",
13+
country: "UK",
14+
},
15+
},
16+
3333: {
17+
name: "Herry",
18+
section: "D",
19+
class: "X",
20+
address: {
21+
"building no": 85,
22+
street: "DC road",
23+
city: "Kachukhet",
24+
country: "Bangladesh",
25+
},
26+
},
27+
};
28+
29+
```
30+
31+
### display `Petersburg` ` Herry`
32+
33+

problem58/problem58.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
let students = {
2+
2222: {
3+
name: "Jack",
4+
section: "C",
5+
class: "IX",
6+
address: {
7+
"building no": 12,
8+
street: "St. Jonson",
9+
city: "Petersburg",
10+
country: "UK",
11+
},
12+
},
13+
3333: {
14+
name: "Herry",
15+
section: "D",
16+
class: "X",
17+
address: {
18+
"building no": 85,
19+
street: "DC road",
20+
city: "Kachukhet",
21+
country: "Bangladesh",
22+
},
23+
},
24+
};
25+

0 commit comments

Comments
 (0)