From 97ce7c61e3748d9cefe213dfd7cd97e6d3a4d4fc Mon Sep 17 00:00:00 2001 From: KhotKeys Date: Sun, 26 Jul 2026 20:09:25 +0100 Subject: [PATCH 1/2] Birmingham | 26-ITP-May | Gabriel Pawuoi | Sprint 3 | Dead code --- Sprint-3/3-dead-code/exercise-1.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Sprint-3/3-dead-code/exercise-1.js b/Sprint-3/3-dead-code/exercise-1.js index 4d09f15fa9..d37f691a8e 100644 --- a/Sprint-3/3-dead-code/exercise-1.js +++ b/Sprint-3/3-dead-code/exercise-1.js @@ -1,13 +1,8 @@ -// Find the instances of unreachable and redundant code - remove them! -// The sayHello function should continue to work for any reasonable input it's given. - let testName = "Jerry"; const greeting = "hello"; function sayHello(greeting, name) { - const greetingStr = greeting + ", " + name + "!"; return `${greeting}, ${name}!`; - console.log(greetingStr); } testName = "Aman"; From 03c987ebc84f9228099aa3a8fe557b2c9c4b3f82 Mon Sep 17 00:00:00 2001 From: KhotKeys Date: Sun, 26 Jul 2026 20:09:47 +0100 Subject: [PATCH 2/2] Birmingham | 26-ITP-May | Gabriel Pawuoi | Sprint 3 | Dead code --- Sprint-3/3-dead-code/exercise-2.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Sprint-3/3-dead-code/exercise-2.js b/Sprint-3/3-dead-code/exercise-2.js index 56d7887c4c..54472642b6 100644 --- a/Sprint-3/3-dead-code/exercise-2.js +++ b/Sprint-3/3-dead-code/exercise-2.js @@ -1,13 +1,4 @@ -// Remove the unused code that does not contribute to the final console log -// The countAndCapitalisePets function should continue to work for any reasonable input it's given, and you shouldn't modify the pets variable. - const pets = ["parrot", "hamster", "horse", "dog", "hamster", "cat", "hamster"]; -const capitalisedPets = pets.map((pet) => pet.toUpperCase()); -const petsStartingWithH = pets.filter((pet) => pet[0] === "h"); - -function logPets(petsArr) { - petsArr.forEach((pet) => console.log(pet)); -} function countAndCapitalisePets(petsArr) { const petCount = {}; @@ -23,6 +14,7 @@ function countAndCapitalisePets(petsArr) { return petCount; } +const petsStartingWithH = pets.filter((pet) => pet[0] === "h"); const countedPetsStartingWithH = countAndCapitalisePets(petsStartingWithH); console.log(countedPetsStartingWithH); // { 'HAMSTER': 3, 'HORSE': 1 } <- Final console log