-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.htm
52 lines (39 loc) · 1.49 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="display"> </div>
<button id="soma">+</button>
<button id="numeroUm">1</button>
<button id="igual">=</button>
<script>
//objeto calculadora
let calculadora = {};
calculadora.display = document.querySelector("#display");
let botaoUm = document.querySelector("#numeroUm");
let botaoSoma = document.querySelector("#soma");
let botaoIgual = document.querySelector("#igual");
let acumulador = "";
botaoUm.onclick = function() {
calculadora.display.innerText += 1;
}
botaoSoma.onclick = function() {
acumulador += calculadora.display.innerText;
acumulador += " + ";
calculadora.display.innerText = "";
}
botaoIgual.onclick = function() {
//TODO: checar se existe conteúdo dentro do display
//colocando conteúdo do display no acumulador
acumulador += calculadora.display.innerText;
//resolvendo conta (conteúdo acumulador)
let resultado = eval(acumulador);
//colocando no display o conteúdo do acumulador
calculadora.display.innerText = resultado;
// limpando o acumulador
acumulador = "";
}
</script>
</body>
</html>