-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
136 lines (118 loc) · 3.21 KB
/
index.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
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
134
135
136
const numberBtns = document.querySelectorAll("[data-number]");
const operationBtns = document.querySelectorAll("[data-operators]");
const equalsBtn = document.querySelector("[data-equals]");
const percentageBtn = document.querySelector("[data-percentage]");
const deleteBtn = document.querySelector("[data-delete]");
const clearBtn = document.querySelector("[data-clear]");
const previousNumText = document.querySelector("[data-previous-num-text]");
const currentNumText = document.querySelector("[data-current-num-text]");
class Calculator {
constructor(previousNumText, currentNumText) {
this.previousNumText = previousNumText;
this.currentNumText = currentNumText;
this.clear();
}
clear() {
this.currentNum = "";
this.previousNum = "";
this.operation = undefined;
}
delete() {
this.currentNum = this.currentNum.toString().slice(0, -1)
}
addNum(num) {
if (num === "," && this.currentNum.includes(",")) {
return
}
this.currentNum = this.currentNum.toString() + num.toString();
}
chooseOperation(operation) {
if (this.currentNum === "") {
return
}
if (this.previousNum !== "") {
this.calculate()
}
this.operation = operation;
this.previousNum = this.currentNum;
this.currentNum = "";
}
percentage() {
let result
let curr = parseFloat(this.currentNum)
if (isNaN(curr)) {
return;
}
result = curr / 100
this.currentNum = result;
this.operation = undefined;
this.previousNum = "";
}
calculate() {
let result
let prev = parseFloat(this.previousNum)
let curr = parseFloat(this.currentNum)
if (isNaN(prev) || isNaN(curr)) {
return
}
switch (this.operation) {
case "+":
result = prev + curr;
break;
case "-":
result = prev - curr;
break;
case "÷":
result = prev / curr;
break;
case "*":
result = prev * curr;
break;
case "%":
result = curr / 100;
break;
default:
return
}
this.currentNum = result
this.operation = undefined
this.previousNum = ""
}
updateDisplay() {
this.currentNumText.innerText = this.currentNum;
if (this.operation) {
this.previousNumText.innerText = `${this.previousNum} ${this.operation}`
} else {
this.previousNumText.innerText = ""
}
}
}
const calculator = new Calculator(previousNumText, currentNumText);
numberBtns.forEach((btn) => {
btn.addEventListener("click", () => {
calculator.addNum(btn.innerText);
calculator.updateDisplay();
});
});
operationBtns.forEach((btn) => {
btn.addEventListener("click", () => {
calculator.chooseOperation(btn.innerText);
calculator.updateDisplay();
});
});
equalsBtn.addEventListener("click", () => {
calculator.calculate()
calculator.updateDisplay()
})
clearBtn.addEventListener("click", () => {
calculator.clear()
calculator.updateDisplay()
})
deleteBtn.addEventListener("click", () => {
calculator.delete()
calculator.updateDisplay()
})
percentageBtn.addEventListener("click", () => {
calculator.percentage()
calculator.updateDisplay()
})