I have a function like so
function foo(x){
if (typeof x === 'undefined'){
var x = 123;
}
}
is the var statement necessary? JSlint complains that variable x hides argument (probably b/c I am defining a variable in the scope of the if statement.
vim. – Matt Ball Oct 28 '11 at 19:49xagain in that if statement you would be referencing the variable containing123not whatever the parameter was. If you are trying to reasign the arguments value, just dox = 123– Chad Oct 28 '11 at 19:50