File tree 2 files changed +60
-0
lines changed
2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ ## Problem 59:
3
+
4
+ ```
5
+ let instructor = {
6
+ name: "Jhankar Mahbub",
7
+ entrepreneur: true,
8
+ additionalData: {
9
+ writer: true,
10
+ favoriteHobbies: ["travelling", "Coding"],
11
+ books: ["programming er bolod to bos", "programming er coddogosti"],
12
+ moreDetails: {
13
+ favoriteBasketballTeam: "XYZ",
14
+ isYoungest: true,
15
+ hometown: {
16
+ city: "ABC",
17
+ state: "VW",
18
+ },
19
+ countriesLivedIn: ["Bangladesh", "New York"],
20
+ },
21
+ },
22
+ };
23
+
24
+ ```
25
+
26
+ ### How will you display
27
+ - programming er coddogosti
28
+ - VW
29
+ - Bangladesh
30
+
31
+ problem getting source : https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view
32
+
33
+
Original file line number Diff line number Diff line change
1
+ let instructor = {
2
+ name : "Jhankar Mahbub" ,
3
+ entrepreneur : true ,
4
+ additionalData : {
5
+ writer : true ,
6
+ favoriteHobbies : [ "travelling" , "Coding" ] ,
7
+ books : [ "programming er bolod to bos" , "programming er coddogosti" ] ,
8
+ moreDetails : {
9
+ favoriteBasketballTeam : "XYZ" ,
10
+ isYoungest : true ,
11
+ hometown : {
12
+ city : "ABC" ,
13
+ state : "VW" ,
14
+ } ,
15
+ countriesLivedIn : [ "Bangladesh" , "New York" ] ,
16
+ } ,
17
+ } ,
18
+ } ;
19
+
20
+
21
+ /*
22
+ How will you display
23
+ - programming er coddogosti
24
+ - VW
25
+ - Bangladesh
26
+
27
+ */
You can’t perform that action at this time.
0 commit comments