Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Geovani Mejia
Front End Web Development Techdegree Student 7,940 PointsWhy use arrow functions instead of regular functions?
I am still not sure why use arrow functions instead of regular functions? thanks
2 Answers

Steven Parker
220,378 PointsMany times it's simply programmer's choice. Arrow functions can make the syntax more concise, particularly when the value from a single statement is to be returned.
But arrow functions have a slightly different behavior, particularly in regard to what the keyword this
represents. This is an advanced concept that you may not need to be concerned with quite yet, but if you want more details, see the MDN page on arrow functions.

Geovani Mejia
Front End Web Development Techdegree Student 7,940 Pointsthank you