-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathapp.js
51 lines (49 loc) · 2.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
app.js
Esta aplcación imprime los nombre de los colaboradores que se meten al repositorio en Github y abren un pull request.
*/
const colaboradores = [
{nombre: "Laura AC", twitter: "@lac"},
{nombre: "Prueba Lab", twitter: "@prueba-lab"},
{nombre: "Khris Parrales", twitter: "@khrisparrales"},
{nombre: "Cliber Castillo", twitter: "@CastilloCliber"},
{nombre: "jrs", twitter: "tus"},
{nombre: "Elisabetta", twitter: "@bettina86"},
{nombre: "Martín Leiva", twitter: "@_marleiva"},
{nombre: "Daniel Jimenez", twitter: "@Dejs1998"},
{nombre: "Martin Fuentes", twitter: "@Someonewhosntme"},
{nombre: "Daniel Maldonado", twitter: "@Maldonadoml09"},
{nombre: "Marcos Rivas", twitter: "@vidamrr"},
{nombre: "Ismael Garcia", twitter: "@leamsigc"},
{nombre: "Marcos Rivas", twitter: "@vidamrr"},
{nombre: "new_dat", twitter: "@victor-israel"},
{nombre: "Victor Israel", twitter: "@victor-israel"},
{nombre: "Fabrik Hernandez", twitter: "@FabrikHernandez"},
{nombre: "Jennifer Cordón", twitter: "@jenny_cordon"},
{nombre: "Javier Francisco", twitter: "@naranjas"},
{nombre: "Eloy García Ceja", twitter: "@wineloy"},
{nombre: "luis miguel", twitter: "@miguelacho"},
{nombre: "Antonio Contreras", twitter: "@Mitwitter"},
{nombre: "Willy Mateo", twitter: "@willymateo"},
{nombre: "Eap Code", twitter: "@CodeEap"},
{nombre: "Rodrigo Gutierrez", twitter: "@RODRIGOa507"},
{nombre: "Lester Morales", twitter: "@larmorales14"},
{nombre: "Daniel Guerrero", twitter: "@dgj86"},
{nombre: "Carlos Vargas", twitter: "@"},
{nombre: "Andres Lopez", twitter: "@16Andres16"},
{nombre: "Amilcar Serrano", twitter: "@amilcarse"},
{nombre: "John Zúñga", twitter: "@JomFelixZ"},
{nombre: "Rafael Aquino", twitter: "@Rafa_elaquino"},
{nombre: "jaif", twitter: "@"},
{nombre: "Gonzalo Romero", twitter: "@neonesoft"},
{nombre: "Josue Vargas", twitter: "@NoTengo"},
{nombre: "Martin Echavez", twitter: "@martinEchavez"},
{nombre: "Cesar L", instagram: "@Charlotporelmundo"},
{nombre: "Emilio Rafael", instagram: "@emilio4585"},
{nombre: "Fausto Montes", twitter: "@30Fausto"},
{nombre: "Jorge Cruz", twitter:"@IDon'tHave"}
];
console.log('Esta es la lista de colaboradores en este proyecto');
colaboradores.forEach(colaborador =>{
console.log(`${colaborador.nombre} - ${colaborador.twitter}`);
});