-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
102 lines (78 loc) · 2.58 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
var display = document.getElementById("display");
var buttons = document.getElementsByClassName("buttons");
var operand1 = 0;
var operand2 = null;
var operator = null;
// Click Event
for(var i = 0; i < buttons.length; i++){
buttons[i].addEventListener("click", function (){
var value = this.getAttribute('data-value');
if(value == 'reset') {
display.innerText = null;
}
else if(value == '+' || value == '-' || value == "*" || value == "/" || value == "%"){
operator = value;
operand1 = parseFloat(display.innerText);
console.log("opera 1 = ",operand1);
display.innerText = null;
}
else if(value == '='){
if(operator != null){
operand2 = parseFloat(display.innerText);
display.innerText = eval(operand1+" "+operator+" "+operand2);
}
else{
display.innerText = "Error";
}
}
else if(value == 'sign'){
display.innerText = eval(parseFloat(display.innerText) * (-1) );
}
else if(value == '.') {
if(display.innerText.length && !display.innerText.includes('.') ) {
display.innerText += value;
}
}
else{
display.innerText += value;
}
});
}
// Key Event
document.addEventListener("keypress", function(event) {
var key;
key = event.keyCode;
var value = String.fromCharCode(key);
console.log(key+" "+value);
var numArray = [1,2,3,4,5,6,7,8,9,0];
if(value == '+' || value == '-' || value == "*" || value == "/" || value == "%"){
operator = value;
operand1 = parseFloat(display.innerText);
display.innerText = null;
}
else if(key == '13'){
if(operator != null){
operand2 = parseFloat(display.innerText);
display.innerText = eval(operand1+" "+operator+" "+operand2);
}
else{
display.innerText = "Error";
}
}
else if(value == '.') {
if(display.innerText.length && !display.innerText.includes('.') ) {
display.innerText += value;
}
}
else if(value in numArray){
display.innerText += value;
}
})
// Delete Key
document.addEventListener("keydown", function(event) {
var key;
key = event.keyCode;
if(key == '8') {
display.innerText = null;
}
});