-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
82 lines (56 loc) · 1.79 KB
/
index.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
80
81
82
class CEmpleado {
constructor(nombre, fecha,salario,direccion) {
this.nombre = nombre;
this.fecha = fecha;
this.salario = salario;
this.direccion = direccion;
}
get n(){
return this.nombre()
}
nombre() {
return this.nombre
}
get f(){
return this.fecha()
}
fecha() {
return this.anoI
}
get s(){
return this.salario()
}
salario() {
return this.salario
}
get d(){
return this.direccion()
}
direccion() {
return this.direccion
}
}
document.getElementById('boton1').onclick = function(){
let nombre1= document.getElementById('nombre1').value;
let fecha1= document.getElementById('f1').value;
let salario1= document.getElementById('salario1').value;
let direccion1= document.getElementById('direccion1').value;
const E1 = new CEmpleado(nombre1,fecha1,salario1,direccion1);
alert(Object.values(E1));
}
document.getElementById('boton2').onclick = function(){
let nombre2= document.getElementById('nombre2').value;
let fecha2= document.getElementById('f2').value;
let salario2= document.getElementById('salario2').value;
let direccion2= document.getElementById('direccion2').value;
const E2 = new CEmpleado(nombre2,fecha2,salario2,direccion2);
alert(Object.values(E2));
}
document.getElementById('boton3').onclick = function(){
let nombre3= document.getElementById('nombre3').value;
let fecha3= document.getElementById('f3').value;
let salario3= document.getElementById('salario3').value;
let direccion3= document.getElementById('direccion3').value;
const E3 = new CEmpleado(nombre3,fecha3,salario3,direccion3);
alert(Object.values(E3));
}