-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
70 lines (53 loc) · 1.68 KB
/
app.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
// *******selectors******
const pFirst = document.querySelector("header p.first");
const pSecond = document.querySelector("header p.second");
const h1 = document.querySelector("header h1");
const container = document.querySelector(".container");
// console.log(container);
// *******events******
container.addEventListener("click", (e)=>{
if (e.target.classList.contains("num")) {
h1.innerText += e.target.innerText
}
else if (e.target.classList.contains("op") && h1.innerText != "") {
pFirst.innerText = h1.innerText;
pSecond.innerText = e.target.innerText;
h1.innerText = ""
}
else if (e.target.innerText == "AC") {
pFirst.innerText = "";
pSecond.innerText = "";
h1.innerText = ""
}
else if (e.target.innerText == "%" & h1.innerText != "") {
h1.innerText = +h1.innerText / 100;
}
else if (e.target.innerText == "="){
calculate()
pFirst.innerText = "";
pSecond.innerText = ""
}
else if (e.target.innerText == "."){
h1.innerText != "" ? h1.innerText+="." : h1.innerText="0."
}
else if (e.target.innerText == "±" & h1.innerText != ""){
h1.innerText = h1.innerText * -1
}
})
// ******functions*****
const calculate = ()=>{
switch (pSecond.innerText) {
case "+":
h1.innerText = +pFirst.innerText + +h1.innerText ;
break;
case "-":
h1.innerText = +pFirst.innerText - +h1.innerText ;
break;
case "x":
h1.innerText = pFirst.innerText * h1.innerText;
break;
case "÷":
h1.innerText = (+pFirst.innerText / +h1.innerText).toFixed(2);
break;
}
}