File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ ## Problme 60:
3
+
4
+ ```
5
+ const studentData = [
6
+ {
7
+ class: 10,
8
+ details: [
9
+ {
10
+ studentId: "1",
11
+ gradingDetails: [{ grade: "A" }],
12
+ },
13
+ {
14
+ studentId: "2",
15
+ gradingDetails: [{ grade: "B" }],
16
+ },
17
+ ],
18
+ },
19
+ {
20
+ class: 11,
21
+ details: [
22
+ {
23
+ studentId: 3,
24
+ gradingDetails: [{ grade: "B" }],
25
+ },
26
+ {
27
+ studentId: 4,
28
+ gradingDetails: [{ grade: "D" }],
29
+ },
30
+ ],
31
+ },
32
+ ];
33
+
34
+ ```
35
+
36
+ ## Display ` B ` ` D `
37
+
38
+ problem getting source: https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view
Original file line number Diff line number Diff line change
1
+ const studentData = [
2
+ {
3
+ class : 10 ,
4
+ details : [
5
+ {
6
+ studentId : "1" ,
7
+ gradingDetails : [ { grade : "A" } ] ,
8
+ } ,
9
+ {
10
+ studentId : "2" ,
11
+ gradingDetails : [ { grade : "B" } ] ,
12
+ } ,
13
+ ] ,
14
+ } ,
15
+ {
16
+ class : 11 ,
17
+ details : [
18
+ {
19
+ studentId : 3 ,
20
+ gradingDetails : [ { grade : "B" } ] ,
21
+ } ,
22
+ {
23
+ studentId : 4 ,
24
+ gradingDetails : [ { grade : "D" } ] ,
25
+ } ,
26
+ ] ,
27
+ } ,
28
+ ] ;
29
+
30
+ /* ===========Display B D =========== */
You can’t perform that action at this time.
0 commit comments