forked from feruzu/Calculadora-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
30 lines (27 loc) · 864 Bytes
/
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
function borrar() {
document.getElementById("cuenta").value = "0";
document.getElementById("resultado").value = "";
}
function borrarNumero() {
var cuenta = document.getElementById("cuenta").value;
if (cuenta.length > 1) {
document.getElementById("cuenta").value = cuenta.slice(0, -1);
} else {
document.getElementById("cuenta").value = "0";
document.getElementById("resultado").value = "";
}
}
function boton(value) {
if (document.getElementById("cuenta").value === "0" && value !== ".") {
document.getElementById("cuenta").value = value;
} else {
document.getElementById("cuenta").value += value;
}
}
function calculo() {
var p = document.getElementById("cuenta").value;
if (p !== "") {
var q = eval(p);
document.getElementById("resultado").value = q;
}
}