Typo - miss ')'

Typo - miss ')' for closing parentheses of map method, line 46
This commit is contained in:
Mark 2017-09-18 23:10:36 +03:00 committed by GitHub
parent a8455f95b6
commit 9d28a4c3e9

View file

@ -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.