Skip to content Skip to sidebar Skip to footer

Javascript - Do I Need To Use 'var' When Reassigning A Variable Defined In The Function's Parameters?

I've found many definitions of the 'var' statement but most of them are incomplete (usually from introductory guides/tutorials). Should I use 'var' if the variable & scope has

Solution 1:

The answer is no, you shouldn’t be doing this. This is actually considered a bad practice!

JS Lint throws the following error when analyzing your code example:

Problem at line 5 character 16: someVar is already defined.


Solution 2:

"I've found many definitions of the 'var' statement but most of them are incomplete."

Try this (a bit stuffy but hopefully complete :-) ): The var keyword declares a new variable, binds it to the current lexical scope, & hoists it to the top of said scope. In other words, the variable will not exist outside of the function that declares it & will be declared before any statements are executed inside the function. Function parameters are implicitly bound to that function's scope so do not require the var keyword.


Solution 3:

Nope, the order in which names are defined when entering an execution scope is as follows:

  1. function parameters (with value passed or undefined)
  2. special name arguments (with value of arguments if doesn't exist)
  3. function declarations (with body brought along)
  4. variable declarations (with undefined if doesn't exist)
  5. name of current function (with body brought along, if doesn't exist)

This means that in this code, foo refers to the function parameter (which could easily be changed):

function foo(foo) {
  var foo;
  alert(foo);
}
foo(1); // 1

If you're using a function declaration inside for foo, that body will override all others. Also, note that this means that you can do this:

function foo(arguments) {
    alert(arguments);
}
foo(); // undefined
foo(1); // 1

Don't do that.


Solution 4:

No. In Javascript, you can mess with the function argument all you want.

Consider this code, which you see all over the Web and which is used to make code work in standard and IE event models:

function someEventHandler(event) {
  event= (event) ? event : window.event;
  // statements
}

Post a Comment for "Javascript - Do I Need To Use 'var' When Reassigning A Variable Defined In The Function's Parameters?"