You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assignments/array-methods.js
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -62,9 +62,8 @@ console.log(fullName);
62
62
63
63
// ==== Challenge 2: Use .map() ====
64
64
// 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
// 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.
77
76
// Return an array named largeShirts that contains information about the runners that have a shirt size of L and log the result
// Now that you have used .forEach(), .map(), .filter(), and .reduce(). I want you to think of potential problems you could solve given the data set and the 5k fun run theme. Try to create and then solve 3 unique problems using one or many of the array methods listed above.
91
+
// Now that you have used .forEach(), .map(), .filter(), and .reduce(). I want you to think of potential problems you could solve given the data set and the 5k fun run theme.
92
+
// Try to create and then solve 3 unique problems using one or many of the array methods listed above.
91
93
92
94
// Problem 1
95
+
//It turns out that some of the runners are actually dogs: Gussy, Fidel and Dollie. Please add for each runner whether the runner is a human or a dog.
0 commit comments