-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
95 lines (83 loc) · 2 KB
/
main.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
// onClick functions
var numberClicked;
var operationClicked;
var dotClicked;
var clearDisplay;
(function() {
"use strict";
var operationWaiting = false;
var operation = "";
var currNum = 0;
var firstValue = true;
var dotPressed = false;
var currValue = 0;
numberClicked = function(num) {
// Update internal value
if (currNum === 0) {
currNum = num;
} else {
// So check if it's already decimal
var decimalNum = (currNum % 1 !== 0);
// Dot has just been pressed. For once we allowed the dot ;)
if (!decimalNum && dotPressed) {
currNum = currNum + ".";
dotPressed = false;
}
currNum = Number(currNum.toString() + num.toString());
}
// Display current number
updateDisplay(currNum);
};
operationClicked = function(operator) {
if (currValue === 0) {
currValue = currNum;
}
// If we already pressed the operation button for the first time, then we perform the previous operation.
if (operationWaiting) {
executeOperation(currNum);
}
currNum = 0;
updateDisplay(currValue); // To Write
operationWaiting = true;
operation = operator;
};
clearDisplay = function() {
operationWaiting = false;
operation = "";
currNum = 0;
firstValue = true;
currValue = 0;
updateDisplay(0);
};
dotClicked = function() {
if (currNum === 0) {
return;
}
dotPressed = true;
updateDisplay(currNum + ".");
};
function executeOperation(num) {
switch (operation) {
case '/':
currValue = currValue / num;
break;
case 'X':
currValue = currValue * num;
break;
case '-':
currValue = currValue - num;
break;
case '+':
currValue = currValue + num;
break;
case '%':
currValue = currValue / 100;
break;
default:
}
}
function updateDisplay(num) {
var displayElem = document.getElementById("display");
displayElem.innerHTML = num;
}
})();