Skip to content

Commit f3cb154

Browse files
committed
3-dead-code exercises completed
1 parent 3372770 commit f3cb154

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
// Find the instances of unreachable and redundant code - remove them!
22
// The sayHello function should continue to work for any reasonable input it's given.
33

4-
let testName = "Jerry";
5-
const greeting = "hello";
6-
74
function sayHello(greeting, name) {
8-
const greetingStr = greeting + ", " + name + "!";
95
return `${greeting}, ${name}!`;
10-
console.log(greetingStr);
116
}
127

13-
testName = "Aman";
8+
const testName = "Aman";
9+
const greeting = "hello";
1410

1511
const greetingMessage = sayHello(greeting, testName);
16-
1712
console.log(greetingMessage); // 'hello, Aman!'

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

Lines changed: 0 additions & 5 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

0 commit comments

Comments
 (0)