From 9d28a4c3e9bd6f264cd23ce40be593a84b9d63e3 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 18 Sep 2017 23:10:36 +0300 Subject: [PATCH] Typo - miss ')' Typo - miss ')' for closing parentheses of map method, line 46 --- 1-js/05-data-types/05-array-methods/7-map-objects/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md index 5e9b815f..9085b631 100644 --- a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md +++ b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md @@ -43,7 +43,7 @@ Here JavaScript would treat `{` as the start of function body, not the start of let usersMapped = users.map(user => *!*({*/!* fullName: `${user.name} ${user.surname}`, id: user.id -}); +})); ``` Now fine.