-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
113 lines (93 loc) · 3.22 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
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
class Calculator{
constructor(previousOperandElement, currentOperandElement){
this.previousOperandElement = previousOperandElement;
this.currentOperandElement = currentOperandElement;
this.clear();
}
clear(){
this.previousOperand = '';
this.currentOperand = '';
this.operation = undefined;
}
compute(){
let answer;
const prev = parseFloat(this.previousOperand);
const curr = parseFloat(this.currentOperand);
if(isNaN(prev) || isNaN(curr)) return;
switch (this.operation){
case '+':
answer=prev+curr;
break;
case '-':
answer=prev-curr;
break;
case '*':
answer=prev*curr;
break;
case '/':
answer=prev/curr;
break;
default:
return
}
this.currentOperand=answer;
this.previousOperand='';
this.operation=undefined;
}
addNumber(number){
if(number === '.' && this.currentOperand.includes('.')) return;
this.currentOperand = this.currentOperand.toString()+number.toString();
}
chooseOperation(operation){
this.operation = operation;
if(this.currentOperand === '') return;
if(this.previousOperand !== ''){
this.compute();
}
this.previousOperand=this.currentOperand;
this.currentOperand = '';
}
updateDisplay(){
this.currentOperandElement.innerText = this.currentOperand;
if(this.operation!=null){
this.previousOperandElement.innerText = this.previousOperand+' '+this.operation;
}
else
this.previousOperandElement.innerText = '';
}
delete(){
this.currentOperand = this.currentOperand.slice(0, -1);
}
}
const numberButtons = document.querySelectorAll('[data-number]');
const operationButtons = document.querySelectorAll('[data-operation]');
const deleteButton = document.querySelector('[data-delete]');
const equalsButton = document.querySelector('[data-equals]');
const clearButton = document.querySelector('[data-clear]');
const previousOperandElement = document.querySelector('[data-previous-operand]');
const currentOperandElement = document.querySelector('[data-current-operand]');
const calculator = new Calculator(previousOperandElement, currentOperandElement);
numberButtons.forEach(button =>{
button.addEventListener('click', ()=>{
calculator.addNumber(button.innerText);
calculator.updateDisplay();
})
})
operationButtons.forEach(button =>{
button.addEventListener('click', ()=>{
calculator.chooseOperation(button.innerText);
calculator.updateDisplay();
})
})
clearButton.addEventListener('click', button =>{
calculator.clear();
calculator.updateDisplay();
})
equalsButton.addEventListener('click', button =>{
calculator.compute();
calculator.updateDisplay();
})
deleteButton.addEventListener('click', button =>{
calculator.delete();
calculator.updateDisplay();
})