-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallback1.js
More file actions
133 lines (115 loc) · 3.19 KB
/
callback1.js
File metadata and controls
133 lines (115 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// const students = [
// {
// name: 'Andi',
// scores: [80, 90, 75],
// },
// {
// name: 'Budi',
// scores: [60, 70],
// },
// {
// name: 'Citra',
// scores: [],
// },
// ];
// function processStudents(data, callback) {
// let result = [];
// for (let i = 0; i < data.length; i++) {
// const student = data[i];
// const score = student.scores;
// if (score.length === 0) continue;
// let point = 0;
// for (let j = 0; j < score.length; j++) {
// const grade = score[j];
// point += grade;
// }
// let avg = Math.floor(point / score.length);
// result.push({
// name: student.name,
// average: avg,
// });
// }
// callback(result);
// }
// function printResult(result) {
// console.log(result);
// }
// processStudents(students, printResult);
// ==============================================
// --------------- L I N E 17 -------------------
// ==============================================
const digimons = [
{
name: 'Agumon',
level: 5,
hp: [30, 20, 25],
},
{
name: 'Gabumon',
level: 4,
hp: [20, 15],
},
{
name: 'Patamon',
level: 3,
hp: [],
},
];
function processDigimons(data, callback) {
let result = [];
for (let i = 0; i < data.length; i++) {
const digimon = data[i];
if (digimon.hp.length === 0) continue;
result.push(callback(digimon));
}
return result;
}
function digiStats(result) {
let status = result['hp'];
let total = 0;
for (let i = 0; i < status.length; i++) {
const stat = status[i];
if (stat.length === 0) {
continue;
}
total += stat;
}
let avg = Math.floor(total / status.length);
return {
name: result.name,
level: result.level,
averageHp: avg,
};
}
let show = processDigimons(digimons, digiStats);
console.log(show);
// ==============================================
// --------------- L I N E 18 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 19 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 21 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 22 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 23 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 24 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 25 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 26 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 27 -------------------
// ==============================================
// ==============================================
// --------------- L I N E 28 -------------------
// ==============================================