绑定对象方法

创建一个函数,用于调用对象中给定键的方法,并可选择性地在参数前添加任何额外的参数。

  • 返回一个使用Function.prototype.apply()context[fn]绑定到context的函数。
  • 使用展开运算符(...)将任何额外的参数添加到参数列表中。
const bindKey = (context, fn, ...boundArgs) => (...args) =>
  context[fn].apply(context, [...boundArgs, ...args]);

const freddy = {
  user: 'fred',
  greet: function(greeting, punctuation) {
    return greeting + ' ' + this.user + punctuation;
  }
};
const freddyBound = bindKey(freddy, 'greet');
console.log(freddyBound('hi', '!')); // 'hi fred!'