-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
79 lines (70 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
const calculatorDisplay = document.querySelector('h1');
const inputBtns = document.querySelectorAll('button');
const clearBtn = document.getElementById('clear-btn');
// calculate first and secon value depending operator
const calculate = {
'/': (firstNumber, secondNumber) => firstNumber / secondNumber,
'*': (firstNumber, secondNumber) => firstNumber * secondNumber,
'+': (firstNumber, secondNumber) => firstNumber + secondNumber,
'-': (firstNumber, secondNumber) => firstNumber - secondNumber,
'=': (firstNumber, secondNumber) => firstNumber = secondNumber
}
let firstValue = 0;
let operatorValue = '';
let awaitingNextValue = false;
function sendNumberValue(number) {
// replace current display value if first value is entered
if (awaitingNextValue) {
calculatorDisplay.textContent = number;
awaitingNextValue = false;
} else {
const displayValue = calculatorDisplay.textContent;
calculatorDisplay.textContent = displayValue === '0' ? number : displayValue + number;
}
}
function addDecimal() {
// if operator ScriptProcessorNode, dont add deciaml
if (awaitingNextValue) return;
// if no decimal add one
if (!calculatorDisplay.textContent.includes('.')) {
calculatorDisplay.textContent = `${calculatorDisplay.textContent}.`;
}
}
function useOperator(operator) {
const currentValue = Number(calculatorDisplay.textContent);
// prevent multiple operators
if (operatorValue && awaitingNextValue) {
operatorValue = operator;
return;
}
// assign firstvalue if no value
if (!firstValue) {
firstValue = currentValue;
} else {
const calculation = calculate[operatorValue](firstValue, currentValue);
calculatorDisplay.textContent = calculation;
firstValue = calculation;
}
// ready for next value atore operator
awaitingNextValue = true;
operatorValue = operator;
}
// add event listeners for numbers, operators, and decimal buttons
inputBtns.forEach((inputBtn) => {
if (inputBtn.classList.length === 0) {
inputBtn.addEventListener('click', () => sendNumberValue(inputBtn.value));
} else if (inputBtn.classList.contains('operator')) {
inputBtn.addEventListener('click', () => useOperator(inputBtn.value));
} else if (inputBtn.classList.contains('decimal')) {
inputBtn.addEventListener('click', () => addDecimal());
}
});
// reset all value, display
function resetAll() {
firstValue = 0;
operatorValue = '';
awaitingNextValue = false;
calculatorDisplay.textContent ='0';
}
// event listeners
clearBtn.addEventListener('click', resetAll);