Skip to content

Commit 6b0476d

Browse files
committed
[번역] 피동형 표현 복구
1 parent 37b8d28 commit 6b0476d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

1-js/06-advanced-functions/10-bind/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ let user = {
185185

186186
let say = user.say.bind(user);
187187

188-
say("Hello"); // Hello, John! (인수 "Hello"를 say에 전달합니다.)
189-
say("Bye"); // Bye, John! ("Bye"를 say에 전달합니다.)
188+
say("Hello"); // Hello, John (인수 "Hello"가 say로 전달되었습니다.)
189+
say("Bye"); // Bye, John ("Bye"가 say로 전달되었습니다.)
190190
```
191191

192192
````smart header="`bindAll`로 메서드 전체 바인딩하기"

0 commit comments

Comments
 (0)