What is the proper syntax for declaring the loop-specific variable in a for/in loop?
The first two both seem to work (and don't raise any flags in Google Closure Compiler), but only the third one passes Crockford's JS Lint. I am reluctant to use it, mostly because it is not compact.
JSLint complains that either val is a bad variable (when I don't add var), or that the declaration should be moved.
Are there any drawbacks to the first or second option? What should I be using? (Examples assume str is a declared string and vals is a declared object)
1. No declaration:
for(val in vals)
{
if(vals.hasOwnProperty(val))
{
str += val;
}
}
2. In 'for' var declaration:
for(var val in vals)
{
if(vals.hasOwnProperty(val))
{
str += val;
}
}
3. Outside the loop var declaration:
var val;
for(val in vals)
{
if(vals.hasOwnProperty(val))
{
str += val;
}
}

valwill be local to that function otherwise it will be global. – cwolves Mar 28 '11 at 20:07