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 Node.js Basics 2017 Building a Command Line Application Making a GET Request with https

Marcus Schumacher
Marcus Schumacher
16,616 Points

Why use const here?

He said we'll store the username in a variable so we can change it later. Then he makes a constant variable called username to store the name. Why would you use const? Wouldn't that make it impossible to change the username later? Wouldn't var be just fine here? Sorry for my ignorance, but I haven't really used const that much and still don't fully understand it I guess :/

1 Answer

You are right, values declared as a const cannot be changed in a running program. What I believe is meant here by "change later" is refactor references to the username in the code more easily. He is just promoting DRY code where the "chalkers" username isn't repeated.