-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
71 lines (66 loc) · 2.24 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
const calculatorDisplay = document.querySelector("h1");
const inputBtns = document.querySelectorAll("button");
const clearBtn = document.getElementById("clear-btn");
let firstValue = 0;
let operatorValue = "";
let awaitingNextValue = false;
function sendNumberValue(number) {
//if current display value is 0 replas it
if (awaitingNextValue) {
calculatorDisplay.textContent = number;
awaitingNextValue = false;
} else {
const displayValue = calculatorDisplay.textContent;
calculatorDisplay.textContent =
displayValue === "0" ? number : displayValue + number;
}
}
function addDecimal() {
if (awaitingNextValue) return;
if (!calculatorDisplay.textContent.includes(".")) {
calculatorDisplay.textContent = `${calculatorDisplay.textContent}.`;
}
}
const calculate = {
"÷": (firstNumber, secondNumer) => firstNumber / secondNumer,
"+": (firstNumber, secondNumer) => firstNumber + secondNumer,
"-": (firstNumber, secondNumer) => firstNumber - secondNumer,
"×": (firstNumber, secondNumer) => firstNumber * secondNumer,
"=": (firstNumber, secondNumer) => secondNumer,
};
function useOperatro(operator) {
const currentValue = Number(calculatorDisplay.textContent);
//Assign firstValue if no Value
if (operatorValue && awaitingNextValue) {
operatorValue = operator;
return;
}
if (!firstValue) {
firstValue = currentValue;
} else {
const calculaion = calculate[operatorValue](firstValue, currentValue);
calculatorDisplay.textContent = calculaion;
firstValue = calculaion;
}
//next value
awaitingNextValue = true;
operatorValue = operator;
}
// Add event listeners for numbers operators decimal buttons
inputBtns.forEach((inputBtn) => {
if (inputBtn.classList.length === 0) {
inputBtn.addEventListener("click", () => sendNumberValue(inputBtn.value));
} else if (inputBtn.classList.contains("operatro")) {
inputBtn.addEventListener("click", () => useOperatro(inputBtn.value));
} else if (inputBtn.classList.contains("decimal")) {
inputBtn.addEventListener("click", () => addDecimal());
}
});
// Rest display
function restAll() {
calculatorDisplay.textContent = "0";
firstValue = 0;
operatorValue = "";
awaitingNextValue = false;
}
clearBtn.addEventListener("click", restAll);