We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323e405 commit 321fa92Copy full SHA for 321fa92
1 file changed
1-js/05-data-types/05-array-methods/7-map-objects/solution.md
@@ -24,8 +24,8 @@ usersMapped = [
24
alert( usersMapped[0].id ); // 1
25
alert( usersMapped[0].fullName ); // John Smith
26
```
27
-화살표 함수에서는 객체 리터럴을 괄호로 한 번 더 감싸야 한다는 점에 유의해 주세요.
28
+화살표 함수에서는 객체 리터럴을 괄호로 한 번 더 감싸야 한다는 점에 유의해 주세요.
29
30
아래와 같이 괄호 없이 코드를 작성할 수 없습니다.
31
```js
0 commit comments