-
Notifications
You must be signed in to change notification settings - Fork 1
/
11-9-score.js
62 lines (54 loc) Β· 1.28 KB
/
11-9-score.js
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
/**
* p450 μμ
*/
function score(candidate, medicalExam, scoringGuide) {
return new Score(candidate, medicalExam, scoringGuide).execute();
}
class Score {
#candidate;
#medicalExam;
#scoringGuide;
#result;
#healthLevel;
#highMedicalRiskFlag;
constructor(candidate, medicalExam, scoringGuide) {
this.#candidate = candidate;
this.#medicalExam = medicalExam;
this.#scoringGuide = scoringGuide;
}
execute() {
this.#result = 0;
this.#healthLevel = 0;
this.#highMedicalRiskFlag = false;
this.scoreSmoking();
let certificationGrade = 'regular';
if (
this.#scoringGuide.stateWithLowCertification(this.#candidate.originState)
) {
certificationGrade = 'low';
this.#result -= 5;
}
// λΉμ·ν μ½λκ° νμ°Έ μ΄μ΄μ§
this.#result -= Math.max(this.#healthLevel - 5, 0);
return this.#result;
}
scoreSmoking() {
if (this.#medicalExam.isSmoker) {
this.#healthLevel += 10;
this.#highMedicalRiskFlag = true;
}
}
}
/**
* μμ μ€νμ μν μμμ μ½λ
*/
const candidate = {
originState: 'state',
};
const medicalExam = {
isSmoker: false,
};
const scoringGuide = {
stateWithLowCertification: (state) => true,
};
console.log(score(candidate, medicalExam, scoringGuide));