Skip to content

Commit 77cb06d

Browse files
Fixed a comment, to reflect changes in the task.
The task has a test with a missing comma. That same comma is missing in the comment, so I'm putting it here as well.
1 parent 4267d22 commit 77cb06d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/05-array-methods/12-reduce-object

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/12-reduce-object/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let usersById = groupById(users);
2323
// after the call we should have:
2424
2525
usersById = {
26-
john: {id: 'john', name: "John Smith", age: 20}
26+
john: {id: 'john', name: "John Smith", age: 20},
2727
ann: {id: 'ann', name: "Ann Smith", age: 24},
2828
pete: {id: 'pete', name: "Pete Peterson", age: 31},
2929
}

0 commit comments

Comments
 (0)