Skip to content

Commit 656810c

Browse files
authored
Merge pull request javascript-tutorial#193 from TMatrix/patch-3
Typo - miss ')'
2 parents a9690a6 + 9d28a4c commit 656810c

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/05-array-methods/7-map-objects

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/7-map-objects/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Here JavaScript would treat `{` as the start of function body, not the start of
4343
let usersMapped = users.map(user => *!*({*/!*
4444
fullName: `${user.name} ${user.surname}`,
4545
id: user.id
46-
});
46+
}));
4747
```
4848

4949
Now fine.

0 commit comments

Comments
 (0)