diff --git a/docs/function.md b/docs/function.md index 120511b..18e0331 100644 --- a/docs/function.md +++ b/docs/function.md @@ -977,10 +977,10 @@ var fix = f => (x => f(v => x(x)(v))) ```javascript foo::bar; // 等同于 -bar.call(foo); +bar.bind(foo); foo::bar(...arguments); -i// 等同于 +// 等同于 bar.apply(foo, arguments); const hasOwnProperty = Object.prototype.hasOwnProperty;