Skip to content

Commit

Permalink
오타 수정
Browse files Browse the repository at this point in the history
사소하지만 공부중에 오타를 확인해서 보냅니다.
Reflect 부분 번역 업데이트가 안됐는데, 가능하면 도전해보겠습니다.
  • Loading branch information
younchong authored and Violet-Bora-Lee committed Feb 6, 2023
1 parent 39fc627 commit 763b48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/99-js-misc/01-proxy/03-observable/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ user.observe((key, value) => {
user.name = "John"; // alerts: SET name=John
```

`makeObservable`가 반환하는 객체는 기존 객체와 동일지만 프로퍼티가 변경될 때 호출되는 함수인 `handler`를 설정해주는 메서드 `observe(handler)`가 있어야 합니다.
`makeObservable`가 반환하는 객체는 기존 객체와 동일하지만 프로퍼티가 변경될 때 호출되는 함수인 `handler`를 설정해주는 메서드 `observe(handler)`가 있어야 합니다.

프로퍼티가 변경될 때마다 프로퍼티 키와 값을 인수로 받는 메서드 `handler(key, value)`가 호출되어야 하죠.

Expand Down

0 comments on commit 763b48e

Please sign in to comment.