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.

Frans de Haan
6,315 PointsUsing let instead of var
Hello,
Why we don't use let instead of var. I think this is the better and newer way?
4 Answers

Alexander Davison
65,456 PointsIndeed let
is the newer and better way. However, this video was made before let
was introduced Besides, if you are just learning JS, you want to know
var
before let
.

Remco Wammes
2,359 PointsIs there any difference between those two?

thomas ketterman
Full Stack JavaScript Techdegree Student 6,409 PointsThere are certainly differences between the old way of declaring variables in JS, using var, and the new way, using let and const. I highly recommend googling it, but i'll try to explain a little bit of it. It mostly has to do with Global vs block level scope. I believe this course will explain scope later. But essentially a common issue with var is that, if you're not careful, you may unintentially change the value of your variable at some point. Since var has no way to lock in it's value they (The mystics of JS magic) decided to create 2 new ways to declare variables, which are to replace var. Var will still work, but you should learn the 2 new ways. let acts pretty similar to var, with some key difference. The second way of declaring variables is now 'const'. Const solves the issue of mistakenly changing the value of variables. Const variable cannot have their value changed. A good example of when to use let or const would be, for example, your score in a video game always changes, so use let. A mathematical equation, or the starting score in a video game are always the same, so use const. Hope this helps. Remember, use all resources. Especially google for clarification. Keep up the good work, Remco.
-Thomas Ketterman

Emmanuel Tweneboah
Courses Plus Student 3,206 PointsThank you Thomas for your clarifications.

current zvikonyo
7,659 Pointsthank you Thomas
Jackson Monk
4,527 PointsJackson Monk
4,527 PointsI agree