Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #273 from sh-cho/main
Browse files Browse the repository at this point in the history
Fix link of `스프레드 구문`
  • Loading branch information
edemaine committed Oct 16, 2023
2 parents fa8b7a8 + efda94f commit 5790ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langs/ko-kr/tutorials/flow_for/lesson.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

인덱스는 상수가 아닌 _Signal_ 이라는 점에 유의해야 합니다. `<For>`는 "참조에 의해 키 지정" 되기 때문에, 렌더링하는 각 노드는 배열의 요소에 연결됩니다. 즉, 배열에 있는 요소가 삭제 및 재생성되는 대신 위치가 변경되면 연결된 노드도 같이 이동해 해당 인덱스가 변경됩니다.

`each` prop은 배열 타입만 사용해야 하지만, [`Array.from`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from), [`Object.keys`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys), 또는 [스프레드 구문](`https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax`)과 같은 유틸리티를 사용해 iterable 객체를 배열로 바꿀 수 있습니다.
`each` prop은 배열 타입만 사용해야 하지만, [`Array.from`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from), [`Object.keys`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys), 또는 [스프레드 구문](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)과 같은 유틸리티를 사용해 iterable 객체를 배열로 바꿀 수 있습니다.

0 comments on commit 5790ed3

Please sign in to comment.