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 trialSuan Choi
Front End Web Development Techdegree Graduate 16,587 PointsIs it necessary to use anonymous arrow functions in onClick method for incrementScore/decrementScore?
It seems like it's working fine without arrow function, just like
<div className="counter">
<button className="counter-action decrement" onClick={decrementScore}> - </button>
<span className="counter-score">{score}</span>
<button className="counter-action increment" onClick={incrementScore}> + </button>
</div>
2 Answers
Steven Parker
231,198 PointsThe value assigned to the "onClick" property is a callback function. β
Suan Choi
Front End Web Development Techdegree Graduate 16,587 PointsOh, sorry I meant anonymous callback function as in the video!
Steven Parker
231,198 PointsSteven Parker
231,198 PointsFunctionally, it makes no difference if the callback function is a named function or an anonymous one. It's your choice.
Suan Choi
Front End Web Development Techdegree Graduate 16,587 PointsSuan Choi
Front End Web Development Techdegree Graduate 16,587 PointsSo in the video, she called the increment/decrement function inside anonymous arrow function and passed it to the onClick handler, rather than passing the increment/decrement functions by itself, as I wrote above. From my understanding sheβs passing a function to call another function. Is that necessary?
Steven Parker
231,198 PointsSteven Parker
231,198 PointsIt's probably not necessary unless there's a reason to create a specific scope for the actual handler. I'm not familiar with this particular lesson, so it might also be a convention established in previous examples.
Suan Choi
Front End Web Development Techdegree Graduate 16,587 PointsSuan Choi
Front End Web Development Techdegree Graduate 16,587 PointsI see, thanks for your answer π