We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b8d28 commit 6b0476dCopy full SHA for 6b0476d
1 file changed
1-js/06-advanced-functions/10-bind/article.md
@@ -185,8 +185,8 @@ let user = {
185
186
let say = user.say.bind(user);
187
188
-say("Hello"); // Hello, John! (인수 "Hello"를 say에 전달합니다.)
189
-say("Bye"); // Bye, John! ("Bye"를 say에 전달합니다.)
+say("Hello"); // Hello, John (인수 "Hello"가 say로 전달되었습니다.)
+say("Bye"); // Bye, John ("Bye"가 say로 전달되었습니다.)
190
```
191
192
````smart header="`bindAll`로 메서드 전체 바인딩하기"
0 commit comments