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 Loops, Arrays and Objects Simplify Repetitive Tasks with Loops A Closer Look at Loop Conditions

renedoukhan
renedoukhan
4,761 Points

var secret

why shouldn't reuse the keyword var with var inside the function once it was defined outside the function ?

Andrew Robinson
Andrew Robinson
16,372 Points

You can reuse the var keyword but if you define a variable outside of a function and then inside of a function with the same name, the function will only access the one defined inside, it's generally is bad practice to reuse variable names though.

So for example:

var message = 'hello';

function print() {
  var message = 'hello2';
  console.log(message); //prints 'hello2'
}

print();
console.log(message); //prints 'hello'

1 Answer