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 Basics Storing and Tracking Information with Variables Introducing Variables

Isn't the use of 'var' instead of 'let' or 'const' for declaring variables deprecated?

The current video I'm watching is "Introducing Variables". Isn't using 'var' deprecated? Aren't we supposed to use 'let' or 'const' ?

2 Answers

Steven Parker
Steven Parker
229,786 Points

The more modern declarators of "let" and "const" are probably best choices in most situations, but "var" has different scope and hoisting behaviors that make it uniquely handy on occasion. I personally also like to use it to distinguish global variables.

I don't expect it to become "deprecated" just because it's no longer the only choice for declarations.

So, looking further ahead in the course, it explains let and const are the current way to declare. I didn't understand why var was in the course now but it makes sense to explain all of it.

consider this answered!

Thanks, Community

let mySignature = "Dave";