Skip to content

Commit 02a0b6e

Browse files
committed
finished array methods
1 parent 306e976 commit 02a0b6e

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

assignments/array-methods.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,30 @@ const runners = [{"id":1,"first_name":"Charmain","last_name":"Seiler","email":"c
5656
// ==== Challenge 1: Use .forEach() ====
5757
// 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+
runners.forEach( function(runnerObj) {
60+
fullName.push(runnerObj.first_name + " " + runnerObj.last_name);
61+
})
5962
console.log(fullName);
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 = [];
66+
let allCaps = runners.map(function(runnerObj) {
67+
return runnerObj.first_name.toUpperCase();
68+
});
6469
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( function(runnerObj) {
74+
return runnerObj.shirt_size === "L";
75+
});
6976
console.log(largeShirts);
7077

7178
// ==== Challenge 4: Use .reduce() ====
7279
// The donations need to be tallied up and reported for tax purposes. Add up all the donations into a ticketPriceTotal array and log the result
73-
let ticketPriceTotal = [];
80+
let ticketPriceTotal = runners.reduce(function(acc, runnerObj) {
81+
return acc + runnerObj.donation;
82+
}, 0)
7483
console.log(ticketPriceTotal);
7584

7685
// ==== Challenge 5: Be Creative ====

0 commit comments

Comments
 (0)