We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d6710 commit b6790d0Copy full SHA for b6790d0
1 file changed
1-js/05-data-types/05-array-methods/7-map-objects/solution.md
@@ -24,12 +24,8 @@ usersMapped = [
24
alert( usersMapped[0].id ); // 1
25
alert( usersMapped[0].fullName ); // John Smith
26
```
27
+화살표 함수 우측에 추가 괄호를 썼다는 점에 주목해 주세요.
28
-<<<<<<< HEAD
29
-화살표 함수 우측에 괄호를 썼다는 점에 주목해주시기 바랍니다.
30
-=======
31
-Please note that in the arrow functions we need to use additional brackets.
32
->>>>>>> upstream/master
33
34
아래와 같이 괄호 없이 코드를 작성할 수 없습니다.
35
```js
0 commit comments