-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.js
98 lines (79 loc) · 1.96 KB
/
first.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
let runningtotal = 0;
let buffer = "0";
let previousoperator;
const screen = document.querySelector('.screen');
function buttonclick(value) {
if (isNaN(value)) {
handleSymbol(value);
} else {
handlenumber(value);
}
screen.innerText = buffer;
}
function handleSymbol(symbol) {
switch (symbol) {
case 'C':
buffer = '0';
runningtotal = 0;
break;
case '=':
if (previousoperator === null) {
return
}
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') {
return;
}
const intbuffer = parseInt(buffer);
if (runningtotal === 0) {
runningtotal = intbuffer;
} else {
flushoperation(intbuffer);
}
previousoperator = symbol;
buffer = '0';
}
function flushoperation(intbuffer) {
if (previousoperator === '+') {
runningtotal += intbuffer;
} else if (previousoperator === '−') {
runningtotal -= intbuffer;
} else if (previousoperator === '×') {
runningtotal *= intbuffer;
} else if (previousoperator === '÷') {
runningtotal /= intbuffer;
}
}
function handlenumber(numberstring) {
if (buffer === '0') {
buffer = numberstring;
} else {
buffer += numberstring;
}
}
function init() {
document.querySelector('.calc-buttons').addEventListener('click', function(event) {
buttonclick(event.target.innerText);
})
}
init();