Files
30-seconds-of-code/snippets/bindAll.md
2020-09-15 21:52:00 +03:00

706 B

title, tags
title tags
bindAll object,function,intermediate

Binds methods of an object to the object itself, overwriting the existing method.

  • Use Array.prototype.forEach() to return a function that uses Function.prototype.apply() to apply the given context (obj) to fn for each function specified.
const bindAll = (obj, ...fns) =>
  fns.forEach(
    fn => (
      (f = obj[fn]),
      (obj[fn] = function() {
        return f.apply(obj);
      })
    )
  );
var view = {
  label: 'docs',
  click: function() {
    console.log('clicked ' + this.label);
  }
};
bindAll(view, 'click');
document.body.addEventListener('click', view.click); // Log 'clicked docs' when clicked.