Skip to content

Commit 321fa92

Browse files
committed
[오타수정] Part1 5.5 배열과 메서드
1 parent 323e405 commit 321fa92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/05-data-types/05-array-methods/7-map-objects

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ usersMapped = [
2424
alert( usersMapped[0].id ); // 1
2525
alert( usersMapped[0].fullName ); // John Smith
2626
```
27-
화살표 함수에서는 객체 리터럴을 괄호로 한 번 더 감싸야 한다는 점에 유의해 주세요.
2827

28+
화살표 함수에서는 객체 리터럴을 괄호로 한 번 더 감싸야 한다는 점에 유의해 주세요.
2929

3030
아래와 같이 괄호 없이 코드를 작성할 수 없습니다.
3131
```js

0 commit comments

Comments
 (0)