-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
52 lines (34 loc) · 1.04 KB
/
main.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
const formulario=document.getElementById("formulario")
const dni=document.getElementById("dni")
const nombre=document.getElementById("nombre")
const apellido=document.getElementById("apellido")
const edad=document.getElementById("edad")
const boton=document.getElementById("boton")
nombre.style="margin: 0.3rem"
apellido.style="margin: 0.3rem"
edad.style="margin: 0.3rem"
boton.style="margin: 0.3rem"
class Clientes{
constructor(id, nombre, apellido, edad){
this.id=id
this.nombre=nombre
this.apellido=apellido
this.edad=edad
}
}
const clientes=[]||JSON.parse(localStorage.getItem("clientes"))
const getAll=()=>{
return clientes
}
const create=(cliente)=>{
clientes.push(cliente)
localStorage.setItem("clientes",JSON.stringify(clientes))
}
formulario.addEventListener(`submit`, (event)=>{
const dni=dni.value
const nombre=nombre.value
const apellido=apellido.value
const edad=edad.value
const cliente= new Clientes(dni, nombre, apellido, edad)
create(cliente)
})