Skip to content

Commit 4c74649

Browse files
committed
Completed 4 out of 5 array method challenges
1 parent 675cb2f commit 4c74649

1 file changed

Lines changed: 13 additions & 6 deletions

File tree

assignments/array-methods.js

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,25 @@ const runners = [{"id":1,"first_name":"Charmain","last_name":"Seiler","email":"c
5454
{"id":50,"first_name":"Shell","last_name":"Baine","email":"[email protected]","shirt_size":"M","company_name":"Gabtype","donation":171}];
5555

5656
// ==== Challenge 1: Use .forEach() ====
57-
// The event director needs both the first and last names of each runner for their running bibs. Combine both the first and last names into a new array called fullName.
57+
// The event director needs both the first and last names of each runner for their running bibs. Combine both the first and last names into a new array called fullName.
5858
let fullName = [];
59-
console.log(fullName);
59+
runners.forEach(function (value) {
60+
// console.log(value.first_name, value.last_name);
61+
});
62+
6063

6164
// ==== Challenge 2: Use .map() ====
6265
// The event director needs to have all the runner's first names converted to uppercase because the director BECAME DRUNK WITH POWER. Convert each first name into all caps and log the result
63-
let allCaps = [];
64-
console.log(allCaps);
66+
let allCaps = runners.map((runner, index, runners) => {
67+
return runner.first_name.toUpperCase();
68+
});
69+
//console.log(allCaps);
6570

6671
// ==== Challenge 3: Use .filter() ====
6772
// The large shirts won't be available for the event due to an ordering issue. Get a list of runners with large sized shirts so they can choose a different size. Return an array named largeShirts that contains information about the runners that have a shirt size of L and log the result
68-
let largeShirts = [];
73+
let largeShirts = runners.filter((runner) => {
74+
return runner.shirt_size === "L"
75+
})
6976
console.log(largeShirts);
7077

7178
// ==== Challenge 4: Use .reduce() ====
@@ -80,4 +87,4 @@ console.log(ticketPriceTotal);
8087

8188
// Problem 2
8289

83-
// Problem 3
90+
// Problem 3

0 commit comments

Comments
 (0)