-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.js
More file actions
71 lines (63 loc) · 2.14 KB
/
script.js
File metadata and controls
71 lines (63 loc) · 2.14 KB
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 nextValue = false;
function numberValue(number) {
if (nextValue) {
calculatorDisplay.textContent = number;
nextValue = false;
} else {
const displayValue = calculatorDisplay.textContent;
calculatorDisplay.textContent =
displayValue === '0' ? number : displayValue + number;
}
}
function addDecimal() {
if (nextValue) return;
if (!calculatorDisplay.textContent.includes('.')) {
calculatorDisplay.textContent = `${calculatorDisplay.textContent}.`;
}
}
const calculate = {
'/': (firstNumber, secoundNumber) => firstNumber / secoundNumber,
'*': (firstNumber, secoundNumber) => firstNumber * secoundNumber,
'+': (firstNumber, secoundNumber) => firstNumber + secoundNumber,
'-': (firstNumber, secoundNumber) => firstNumber - secoundNumber,
'=': (firstNumber, secoundNumber) => secoundNumber,
};
function useOperator(operator) {
const currentValue = Number(calculatorDisplay.textContent);
if (operatorValue && nextValue) {
operatorValue = operator;
return;
}
if (!firstValue) {
firstValue = currentValue;
} else {
//console.log(firstValue, operatorValue, currentValue);
const calculation = calculate[operatorValue](firstValue, currentValue);
//console.log('calculation:', calculation);
calculatorDisplay.textContent = calculation;
firstValue = calculation;
}
nextValue = true;
operatorValue = operator;
}
inputBtns.forEach((inputBtn) => {
if (inputBtn.classList.length === 0) {
inputBtn.addEventListener('click', () => numberValue(inputBtn.value));
} else if (inputBtn.classList.contains('operator')) {
inputBtn.addEventListener('click', () => useOperator(inputBtn.value));
} else if (inputBtn.classList.contains('decimal')) {
inputBtn.addEventListener('click', () => addDecimal());
}
});
function clearAll() {
firstValue = 0;
operatorValue = '';
nextValue = false;
calculatorDisplay.textContent = '0';
}
clearBtn.addEventListener('click', clearAll);