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 trialjlampstack
23,932 PointshandleRemovePlayer() function ... naming convention???
Why does Guil name this function handleRemovePlayer()
Why not just removePlayer() which is shorter and cleaner?
Is this a common naming convention to use handle? If so how is it used?
1 Answer
Lee Vaughn
Treehouse TeacherHi jaycode!
The word "handle" isn't related to any particular naming convention. I believe he just chose to name the method handleRemovePlayer to differentiate it from the removePlayer prop that he creates later.
Lee
jlampstack
23,932 Pointsjlampstack
23,932 PointsThanks Lee,
I have seen handle used before so I wasn't quite sure. I suppose to give the function a more explicit name for developers reading the code to better understand its purpose at quick glance. I wasn't sure if this was a common naming convention or just an arbitrary name. I happen to like the way Guil defined the function beginning with handle as a prefix to let us know it's an event handler. I guess it comes down to preference at the end of the day.
Thanks for clearing this up!