ReactJS bind(this)

DOM callbacks such as click events will set the this context to the DOM element itself, in this case the li. Try removing the part you don’t understand and see what happens – you’ll see something like this.setState is not defined, because that function isn’t defined in the context of the li element (it’s basically looking for li.setState).

What bind is doing on that line is ensuring that whenever that function gets called, it will get called with the this context we want, in this case the Popular component – e.g. Popular.setState.

These days it’s getting more and more common to see folks just using fat arrow syntax as a shorthand to preserve the this context – e.g. in this case onClick={ () => this.updateLanguage(lang) }.

(note for those concerned about performance: the fat arrow approach is cleaner but somewhat controversial since it’s repeatedly declaring the function on every single render. That said, some folks claim there is minimal or no significant performance impact.)

Leave a Comment