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 JavaScript Functions Arrow Functions Create Functions Using Arrow Syntax

Why 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
Steven Parker
230,178 Points

Many 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.

thank you