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 AJAX Basics (retiring) Programming AJAX Stage 2 Challenge

Manuel Rohrbach
Manuel Rohrbach
3,152 Points

Why is the declaration of variable 'var' in the ajax course used? Why not 'let'?

As learned in the JS course by treehouse I was told not to use 'var' anymore, I should use 'let' or 'const' instead. Did you use 'var' in this course so you don't have to explain the whole concept of variable declarations to people again since it's about AJAX?

1 Answer

Juan Diaz
Juan Diaz
7,661 Points

Hey there Manuel, remember that many courses have been recorded at different points in time; therefore, you might encounter teachers using 'var' since the 'let' and 'const' keywords had not been introduced yet in that specific version of JavaScript. You might as well use them in your projects but it is a matter of preference, mostly. Still, it is highly recommended to use the newest 'let' and 'const' keywords that were introduced in ECMAScript 2015 or ES6.