Skip to content

Commit 13b2669

Browse files
problem 61 initialization complete
1 parent 4a290d9 commit 13b2669

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

problem61/problem.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Problem 61:
2+
3+
```
4+
let data = {
5+
data: [
6+
{
7+
bookId: 1,
8+
bookDetails: { name: "habluder adda", category: "XYZ", price: "20$" },
9+
bookCategory: "Basic",
10+
},
11+
{
12+
bookId: 2,
13+
bookDetails: {
14+
name: "gobluder adda",
15+
category: "ABC",
16+
price: "40$",
17+
},
18+
bookCategory: "Beginner",
19+
},
20+
],
21+
};
22+
23+
```
24+
25+
### Display `habluder adda` and `Beginner`
26+
27+
28+
29+
30+
problem getting source : https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view

problem61/problem61.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
let data = {
2+
data: [
3+
{
4+
bookId: 1,
5+
bookDetails: { name: "habluder adda", category: "XYZ", price: "20$" },
6+
bookCategory: "Basic",
7+
},
8+
{
9+
bookId: 2,
10+
bookDetails: {
11+
name: "gobluder adda",
12+
category: "ABC",
13+
price: "40$",
14+
},
15+
bookCategory: "Beginner",
16+
},
17+
],
18+
};
19+
20+
21+
/* ======== Display `habluder adda` and `Beginner` ============ */

0 commit comments

Comments
 (0)