-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
56 lines (44 loc) · 1.25 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
const button = document.querySelector('#calculateButton');
button.addEventListener('click', main)
function numsValidated (num1, num2) {
if (!num1 || !num2) {
alert('Please enter only numbers');
return false;
}
return true;
}
function getOperator () {
var radioButtons = document.getElementsByName('operator');
for(const radioButton of radioButtons) {
if (radioButton.checked) {
return radioButton.value;
}
}
}
function calculate (num1, num2, operator) {
if (operator === '*'){
return num1 * num2;
} else if (operator === '/') {
return num1 / num2;
} else if (operator === '+') {
return num1 + num2;
} else {
return num1 - num2;
}
// eval(a+operator+b)
}
function main () {
const num1 = Number(document.querySelector('#firstNumber').value);
const num2 = Number(document.querySelector('#secondNumber').value);
if (numsValidated(num1, num2)) {
operator = getOperator();
result = calculate(num1, num2, operator);
const output = document.querySelector('#output');
output.value = result;
}
}
// setInterval(
// () => {
// console.log(firstNumber, secondNumber);
// }, 1000
// )