File tree 2 files changed +58
-0
lines changed
2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments