Skip to content

Commit 8909908

Browse files
committed
clarification
1 parent 00b9d3b commit 8909908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assignments/array-methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ let firstNamesAllCaps = [];
6666
console.log(firstNamesAllCaps);
6767

6868
// ==== Challenge 3: Use .filter() ====
69-
// The large shirts won't be available for the event due to an ordering issue. We need a filtered version of the runners array, containing only those runners with large sized shirts so they can choose a different size.
69+
// The large shirts won't be available for the event due to an ordering issue. We need a filtered version of the runners array, containing only those runners with large sized shirts so they can choose a different size. This will be an array of objects.
7070
let runnersLargeSizeShirt = [];
7171
console.log(runnersLargeSizeShirt);
7272

0 commit comments

Comments
 (0)