-
Notifications
You must be signed in to change notification settings - Fork 0
/
Display.js
68 lines (59 loc) · 2.03 KB
/
Display.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
class Display{
constructor(displayValorAnterior,displayValorActual) {
this.displayValorActual = displayValorActual;
this.displayValorAnterior = displayValorAnterior;
this.valorActual = '';
this.valorAnterior = '';
this.signos = {
suma: '+',
division: '%',
multiplicacion: 'x',
resta: '-',
}
}
borrar() {
this.valorActual = this.valorActual.toString().slice(0,-1);
this.imprimirValores();
}
borrarTodo() {
this.valorActual = '';
this.valorAnterior = '';
this.tipoOperacion = undefined;
this.imprimirValores();
}
computar(tipo) {
this.tipoOperacion !== 'igual' && this.calcular();
this.tipoOperacion = tipo;
this.valorAnterior = this.valorActual || this.valorAnterior;
this.valorActual = '';
this.imprimirValores();
}
agregarNumero(numero) {
if(numero === '.' && this.valorActual.includes('.')) return
this.valorActual = this.valorActual.toString() + numero.toString();
this.imprimirValores();
}
imprimirValores() {
this.displayValorActual.textContent = this.valorActual;
this.displayValorAnterior.textContent = `${this.valorAnterior} ${this.signos[this.tipoOperacion] || ''}`;
}
calcular() {
const valorAnterior = parseFloat(this.valorAnterior);
const valorActual = parseFloat(this.valorActual);
if( isNaN(valorActual) || isNaN(valorAnterior) ) return
switch (this.tipoOperacion){
case "suma":
this.valorActual = valorActual + valorAnterior;
break;
case "resta":
this.valorActual = valorAnterior - valorActual;
break;
case "division":
this.valorActual = valorAnterior / valorActual;
break;
case "multiplicacion":
this.valorActual = valorActual * valorAnterior;
break;
}
}
}