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 trialJosiah Baumgartner
Full Stack JavaScript Techdegree Student 6,112 PointsDo you need to declare your counter variable in a for loop using 'var'?
I wrote my for loop in the challenge like this:
for ( i = 0; i < 10; i += 1) {
}
I forgot to write it as var i = 0; but it seems to work fine. Is there any issue to writing it as I did?
Edit: I was thinking about it more and maybe it works fine in this case but if there was another variable named i I think it would pull from global scope instead of just the loop parameters. Is that correct? It's probably best to be safe and use best practice all the time but please correct me if I am wrong.
2 Answers
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt is probably best to declare with let
, actually as well as var
. Not doing so may cause issues later on as your script gets bigger but as you suggest assigning the keywords or not as an effect on the scope of that variable. :-)
blueskyispink
2,997 PointsHi all!
I was looking if someone asked a similar question to mine, and it looks like Josiah has. In my case, I realised that I did not declare variable rgbColor as seen here:
var html = '';
function randomColour() { var colour = Math.floor(Math.random() * 256); return colour; }
for ( var i = 0; i < 10; i += 1) { rgbColor = 'rgb(' + randomColour() + ',' + randomColour() + ',' + randomColour() + ')'; html += '<div style="background-color:' + rgbColor + '"></div>'; }
document.write(html);
I commented out variable html and it threw an error. However, not declaring rgbColor does no harm. Why is that? Based on the discussion - is it then rgbColor an implicit global variable? But then why is html not?
Thanks in advance!
blueskyispink
2,997 PointsI just realised, that it is probably due to html being redefined (is that the right term), not assigned. Therefore, rgbColor is implicitly defined because it is an assignment, whereas html isn't (within the for loop).
Steven Parker
231,236 PointsSteven Parker
231,236 PointsTo expand on what Jonathan is saying, if you omit "var" or "let" you're creating an implicit global variable, which you would generally want to avoid.
Josiah Baumgartner
Full Stack JavaScript Techdegree Student 6,112 PointsJosiah Baumgartner
Full Stack JavaScript Techdegree Student 6,112 PointsI actually hadn't learned anything about the let keyword yet but your comment led me to do some research and it makes a lot of sense. Thanks!