Skip to content

Commit a14bf27

Browse files
committed
Did exercise-2.js
1 parent 5d0e829 commit a14bf27

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Sprint-3/3-dead-code/exercise-2.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22
// The countAndCapitalisePets function should continue to work for any reasonable input it's given, and you shouldn't modify the pets variable.
33

44
const pets = ["parrot", "hamster", "horse", "dog", "hamster", "cat", "hamster"];
5-
const capitalisedPets = pets.map((pet) => pet.toUpperCase());
65
const petsStartingWithH = pets.filter((pet) => pet[0] === "h");
76

8-
function logPets(petsArr) {
9-
petsArr.forEach((pet) => console.log(pet));
10-
}
11-
127
function countAndCapitalisePets(petsArr) {
138
const petCount = {};
149

@@ -25,4 +20,4 @@ function countAndCapitalisePets(petsArr) {
2520

2621
const countedPetsStartingWithH = countAndCapitalisePets(petsStartingWithH);
2722

28-
console.log(countedPetsStartingWithH); // { 'HAMSTER': 3, 'HORSE': 1 } <- Final console log
23+
console.log(countedPetsStartingWithH); // { 'HAMSTER': 3, 'HORSE': 1 } <- Final console log

0 commit comments

Comments
 (0)