Skip to content

Commit bbbc7e4

Browse files
authored
Update exercise-2.js
1 parent ba94ecd commit bbbc7e4

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +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());
6-
const petsStartingWithH = pets.filter((pet) => pet[0] === "h");
75

8-
function logPets(petsArr) {
9-
petsArr.forEach((pet) => console.log(pet));
10-
}
6+
const petsStartingWithH = pets.filter((pet) => pet[0] === "h");
117

128
function countAndCapitalisePets(petsArr) {
139
const petCount = {};
@@ -25,4 +21,4 @@ function countAndCapitalisePets(petsArr) {
2521

2622
const countedPetsStartingWithH = countAndCapitalisePets(petsStartingWithH);
2723

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

0 commit comments

Comments
 (0)