Merge pull request #2184 from vsemozhetbyt/patch-8

Fix a typo in a 1.5.5 task solution
This commit is contained in:
Ilya Kantor 2020-10-11 17:17:25 +03:00 committed by GitHub
commit 3ba22f75a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ alert( usersMapped[0].id ); // 1
alert( usersMapped[0].fullName ); // John Smith
```
Please note that in for the arrow functions we need to use additional brackets.
Please note that in the arrow functions we need to use additional brackets.
We can't write like this:
```js