-
Notifications
You must be signed in to change notification settings - Fork 0
/
lis_contac-1.1.js
64 lines (59 loc) · 1.13 KB
/
lis_contac-1.1.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
let listaContactos = [
{
id: 1,
nombres: "Juan",
apellidos: "Perez",
telefono: "555-1234",
ubicaciones: {
ciudad: "Bogotá",
direccion: "Calle 123"
}
},
{
id: 2,
nombres: "Maria",
apellidos: "Garcia",
telefono: "555-5678",
ubicaciones: {
ciudad: "Medellín",
direccion: "Carrera 456"
}
},
{
id: 3,
nombres: "Carlos",
apellidos: "Rodriguez",
telefono: "555-9012",
ubicaciones: {
ciudad: "Cali",
direccion: "Avenida 789"
}
}
];
function agregarContacto(nuevoContacto) {
listaContactos.push(nuevoContacto);
}
function borrarContacto(id) {
let indice = listaContactos.findIndex(function (contacto) {
return contacto.id === id;
});
if (indice !== -1) {
listaContactos.splice(indice, 1);
}
}
function imprimirContactos() {
listaContactos.forEach(contacto => console.log(contacto));
}
agregarContacto({
id: 4,
nombres: "Ana",
apellidos: "Lopez",
telefono: "555-3456",
ubicaciones: {
ciudad: "Barranquilla",
direccion: "Calle 678"
}
});
imprimirContactos();
borrarContacto(2);
imprimirContactos();