-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.js
102 lines (84 loc) · 2.35 KB
/
calculator.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
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
let display = document.getElementById('display');
let buttons = document.querySelectorAll('button');
let calculator = {
displayValue: '',
init() {
buttons.forEach(button => {
button.addEventListener('click', () => {
this.handleButtonPress(button);
console.log(button.id);
});
});
},
handleButtonPress(button) {
switch (button.id) {
case 'clear':
this.clearDisplay();
break;
case 'clear_all':
this.clearAll();
break;
case 'backspace':
this.backspace();
break;
case 'divide':
case 'multiply':
case 'subtract':
case 'add':
case 'log':
case 'sqrt':
this.getOperator(button.id);
break;
case 'equals':
this.calculateResult();
break;
default:
this.getNumber(button.textContent);
}
},
clearDisplay() {
this.displayValue = '';
display.value = '';
},
clearAll() {
this.displayValue = '';
display.value = '';
},
backspace() {
this.displayValue = this.displayValue.slice(0, -1);
display.value = this.displayValue;
},
getNumber(number) {
this.displayValue += number;
display.value = this.displayValue;
},
getOperator(operator) {
switch (operator) {
case 'divide':
this.displayValue += '/';
break;
case 'multiply':
this.displayValue += '*';
break;
case 'subtract':
this.displayValue += '-';
break;
case 'add':
this.displayValue += '+';
break;
case 'sqrt':
this.displayValue = Math.sqrt(this.displayValue);
break;
case 'log':
this.displayValue = Math.log(this.displayValue);
break;
}
display.value = this.displayValue;
},
calculateResult() {
let result = eval(this.displayValue);
this.displayValue = result;
display.value = this.displayValue;
}
};
calculator.init();