We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d4c50 commit ca47903Copy full SHA for ca47903
1-js/06-advanced-functions/09-call-apply-decorators/article.md
@@ -413,7 +413,7 @@ hash(1, 2);
413
- [func.call(context, arg1, arg2...)](mdn:js/Function/call) —— 用给定的上下文和参数调用 `func`。
414
- [func.apply(context, args)](mdn:js/Function/apply) —— 调用 `func` 将 `context` 作为 `this` 和类数组的 `args` 传递给参数列表。
415
416
-通用的 **呼叫转移(call forwarding)** 通常是使用 `apply` 完成的:
+通用的 **调用传递(call forwarding)** 通常是使用 `apply` 完成的:
417
418
```js
419
let wrapper = function() {
0 commit comments