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
+30-1Lines changed: 30 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,36 @@ console.log(ticketPriceTotal);
91
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. Try to solve 3 unique problems using one or many of the array methods listed above.
92
92
93
93
// Problem 1
94
+
//The event director needs the first names and last names
95
+
// of each runner along with their email addresses for creating a
96
+
// contact list for the runners be able to coordinate with each other.
97
+
// Combine both the first and last names into a new array called contactList along with their email addresses.
0 commit comments