We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c866b8e commit ccf8597Copy full SHA for ccf8597
1-js/06-advanced-functions/09-call-apply-decorators/article.md
@@ -372,7 +372,7 @@ function hash() {
372
hash(1, 2);
373
```
374
375
-The trick is called *method borrowing*.
+위와 같은 트릭을 *메서드 빌리기(method borrowing)*라고 부릅니다.
376
377
일반 배열에서 `join` 메서드를 빌려오고(`[].join`), `[].join.call`를 사용해 `arguments`를 컨텍스트로 고정한 후 `join`메서드를 호출하는 것이죠.
378
0 commit comments