Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-js/04-object-basics/01-object/5-sum-object/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
let salaries = {
John: 100,
Ann: 160,
Pete: 130
Pete: 130,
};

let sum = 0;
Expand Down
2 changes: 1 addition & 1 deletion 1-js/04-object-basics/01-object/5-sum-object/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ importance: 5
let salaries = {
John: 100,
Ann: 160,
Pete: 130
Pete: 130,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

对象属性的尾逗号应该只是一个风格问题,这里感觉可以保留

}
```

Expand Down