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!
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

anonymous123
5,794 PointsWhat is a declaration?
Why do people say "declare the function" when only statements with let, const, or var are declarations? MDN has only those three keywords listed under the declaration section.
1 Answer

Richard Verbraak
7,739 PointsDeclaring a function is simply a way of saying, give the function a name so it can be called back and used by the compiler. You just define what the function does, the same way you declare variables.
Just a figure of speech in this case ;)