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 trialleosiu
7,409 Pointswhy using "let" in javaScript
teacher use "let" in this course. why I need to use "let" here ?
what is the different if let , var
2 Answers
Ainne Oum
3,221 PointsHi Leo, Always use const... if you must have a variable that will need to change, then use let. In most cases you will only see var when learning about JS. It's important to use let or const to prevent hoisting in our functions... which can cause bugs... It is good practice to always use const first.