-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
86 lines (77 loc) · 2.64 KB
/
script.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
class Calculator {
constructor(previousOperandText, currentOperandText) {
this.previousOperandText = previousOperandText;
this.currentOperandText = currentOperandText;
this.operation = undefined;
this.clear();
}
/**
* This is a JavaScript docstring
* Here you explain the purpose of the following function
*/
clear() {
this.previousOperandText.innerText = "";
this.currentOperandText.innerText = "";
this.operation = undefined;
}
removeLastChar(s) {
return s == null || s.length == 0 ? null : s.substring(0, s.length - 1);
}
delete() {
this.currentOperandText.innerText = this.removeLastChar(
this.currentOperandText.innerText,
);
}
appendNumber(number) {
if (number === "." && this.currentOperandText.innerText.includes("."))
return;
this.currentOperandText.innerText =
this.currentOperandText.innerText.toString() + number.toString();
}
chooseOperation(operation) {
this.previousOperandText.innerText =
this.previousOperandText.innerText.toString() +
" " +
this.currentOperandText.innerText.toString();
if (!(operation === "=")) {
this.previousOperandText.innerText =
this.previousOperandText.innerText.toString() + " " + operation;
}
this.currentOperandText.innerText = "";
}
compute() {
this.chooseOperation("=");
var totalOperation =
this.previousOperandText.innerText.toString() +
this.currentOperandText.innerText.toString();
totalOperation = totalOperation.replace(/\s/g, "").trim();
this.currentOperandText.innerText = eval(totalOperation);
}
}
const numberButtons = document.querySelectorAll("[data-number]");
const operationsButtons = document.querySelectorAll("[data-operation]");
const deleteButton = document.querySelector("[data-delete]");
const equalButton = document.querySelector("[data-equal]");
const allClearButton = document.querySelector("[data-all-clear]");
const previousOperandText = document.querySelector("[data-previous-operand]");
const currentOperandText = document.querySelector("[data-current-operand]");
const calculator = new Calculator(previousOperandText, currentOperandText);
numberButtons.forEach((button) => {
button.addEventListener("click", () => {
calculator.appendNumber(button.innerText);
});
});
deleteButton.addEventListener("click", () => {
calculator.delete();
});
allClearButton.addEventListener("click", () => {
calculator.clear();
});
operationsButtons.forEach((button) => {
button.addEventListener("click", () => {
calculator.chooseOperation(button.innerText);
});
});
equalButton.addEventListener("click", () => {
calculator.compute();
});