-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.js
97 lines (86 loc) · 1.86 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
let runningTotal = 0;
let buffer = "0";
let previousOperator = null;
const screen = document.querySelector('.screen');
function buttonClick(value) {
if (isNaN(value)) {
// this is not a number
handleSymbol(value);
} else {
// this is a number
handleNumber(value);
}
screen.innerText = buffer;
}
function handleSymbol(symbol) {
switch (symbol) {
case 'C':
buffer = '0';
runningTotal = 0;
break;
case '=':
if (previousOperator === null) {
// you need two numbers to do math
return;
}
// do the math
flushOperation(parseInt(buffer));
previousOperator = null;
buffer = runningTotal;
runningTotal = 0;
break;
case '←':
if (buffer.length === 1) {
buffer = '0';
} else {
buffer = buffer.substring(0, buffer.length - 1);
}
break;
case '+':
case '−':
case '×':
case '÷':
handleMath(symbol);
break;
}
}
function handleMath(symbol) {
if (buffer === '0') {
// do nothing
return;
}
// turn string into number
const intBuffer = parseInt(buffer);
if (runningTotal === 0) {
runningTotal = intBuffer;
} else {
flushOperation(intBuffer);
}
previousOperator = symbol;
buffer = '0';
}
function handleNumber(numberString) {
if (buffer === '0') {
buffer = numberString;
} else {
buffer += numberString;
}
}
function flushOperation(intBuffer) {
if (previousOperator === '+') {
runningTotal += intBuffer;
} else if (previousOperator === '−') {
runningTotal -= intBuffer;
} else if (previousOperator === '×') {
runningTotal *= intBuffer;
} else {
runningTotal /= intBuffer;
}
}
function init() {
document.querySelector('.calc-buttons')
.addEventListener('click', function (event) {
buttonClick(event.target.innerText);
})
}
init();