Skip to content

Commit 4e85f3a

Browse files
authored
Update solution.md
1 parent 24411a8 commit 4e85f3a

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ usersMapped = [
2121
]
2222
*/
2323

24-
alert( usersMapped[0].id ) // 1
25-
alert( usersMapped[0].fullName ) // John Smith
24+
alert( usersMapped[0].id ); // 1
25+
alert( usersMapped[0].fullName ); // John Smith
2626
```
2727

2828
Please note that in for the arrow functions we need to use additional brackets.

0 commit comments

Comments
 (0)