Skip to content

Commit 22dffdf

Browse files
problem 59 initialization completed
1 parent 91cfd49 commit 22dffdf

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

problem59/problem.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+

problem59/problem59.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
*/

0 commit comments

Comments
 (0)