Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Basics (2018) Understanding State Remove Items From State

Felix Ding
Felix Ding
5,144 Points

How come we don't have to bind thisArg in the onClick event for remove player?

Earlier when we constructed the onClick call back for the increment button, we had to bind the call back during assignment:

<button className="counter-action increment" onClick={this.incrementScore.bind(this)}> + </button>

I understood this as the call site is DOM, we needed to bind the callback function. If you log thisArg without binding in incrementScore, you would get undefined.

However, we didn't need do bind removePlayer here:

removePlayer={this.handleRemovePlayer}

And if you were to log this from handleRemovePlayer, you would get App. I don't understand what the difference is between the two aforementioned scenarios.

1 Answer

Slava Serbov
Slava Serbov
18,398 Points

Because "handleRemovePlayer" is an arrow function.