-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodifyArray3.js
31 lines (26 loc) · 1.13 KB
/
modifyArray3.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
/**
Create a new formatted array by using the original array.(20mins)
let heroes= [" avEnGers ", " cAptain ameRICA",” spiderman”, " ironMAN ", " black pANther "];
Output:
["Avengers", "Captain America",”Spiderman”, "Ironman", "Black Panther"]
*/
const heroes = [" avEnGers ", " cAptain ameRICA", " spiderman ", " ironMAN", " black pANther "];
const cleanedHeroes = new Array();
for (let index = 0; index < heroes.length; index++) {
cleanedHeroes.push(heroes[index].trim().toLowerCase());
}
const formattedHeroes = new Array();
for (let index = 0; index < cleanedHeroes.length; index++) {
let temp = cleanedHeroes[index];
if (temp.split("").includes(" ")) {
let multiWordsArr = temp.split(" ");
for (let j = 0; j < multiWordsArr.length; j++) {
multiWordsArr[j] = multiWordsArr[j].charAt(0).toUpperCase() + multiWordsArr[j].slice(1);
}
formattedHeroes.push(multiWordsArr.join(" "));
} else {
let oneWord = temp.charAt(0).toUpperCase() + temp.slice(1);
formattedHeroes.push(oneWord);
}
}
console.log(formattedHeroes);