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 trialLu Favela
Front End Web Development Techdegree Student 15,570 PointsCounter
Is "Counter" a JavaScript keyword for counting loops, or was it just a variable name in the example?
2 Answers
Steven Parker
231,236 Points"Counter" is not a language keyword. But it is "best practice" to choose variable names that relate to the purpose the variable is used for, so this is a good example of a well-chosen variable name.
Eyanjem Etta-Ashu
Full Stack JavaScript Techdegree Graduate 18,260 PointsIt was a variable name. Choosing a variable name that matches the action performed is best practice.