-
Notifications
You must be signed in to change notification settings - Fork 0
/
secsoc0403.js
24 lines (19 loc) · 951 Bytes
/
secsoc0403.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
/*Secret Society
Find the name of a secret society based on the first letter of each member's name.
Examples:
- `secretName(["Esperanza", "Franco", "Nia"])` should return `'EFN'`.
- `secretName(['Phoebe', 'Ross', 'Chandler', 'Joey', 'Monica', 'Rachel'])` should return `'CJMPRR'`.
- `secretName(['Harry', 'Ron', 'Hermione'])` should return `'HHR'`.
*/
function nombreSecreto(nombre) {
let sociedadSecreta = [];
let nombreSecreto = "";
nombre.forEach((element) => sociedadSecreta.push(element[0]));
sociedadSecreta.sort();
sociedadSecreta.forEach((el)=>nombreSecreto += el);
return nombreSecreto;
}
console.log(nombreSecreto(["Esperanza", "Franco", "Nia"]));
console.log(nombreSecreto(["Phoebe", "Ross", "Chandler","Joey", "Monica", "Rachel"]));
console.log(nombreSecreto(["Harry", "Ron", "Hermione"]));
//ya estoy harta de intentarlo como loca (eso de subir mis archivos a github y que no funcione)