vote up 24 vote down star
15

I've recently started maintaining someone else's JavaScript code. I'm fixing bugs, adding features and also trying to tidy up the code and make it more consistent.

The previous developer uses two ways of declaring functions and I can't work out if there is a reason behind it, or not.

The two ways are:

var functionOne = function() {
 // Some code
}

function functionTwo() {
 // Some code
}

What are the reasons for using these two different methods and what are the pros and cons of each? Is there anything that can be done with one method that can't be don with the other?

Thanks for your help.

flag

5 Answers

vote up 41 vote down check

The difference is that functionTwo is defined at parse-time for a script block, whereas functionOne is defined at run-time. For example:

<script>

// Error
functionOne();

var functionOne = function()
{
}

</script>



<script>

// No error
functionTwo();

function functionTwo()
{
}

</script>

Edit: I forgot to mention that using the var method, your function is also scoped:

<script type="text/javascript">

function foo()
{
    var functionOne = function() { alert('hello'); }

    // No error
    functionOne();

    document.body.onclick = functionOne;
}

foo();

// Error
functionOne();

</script>

This lets you create a function and assign it to multiple event handlers without cluttering up the global namespace.

link|flag
Thanks for your answer. That helps me understand how they both work. I still need to understand in what circumstances you'd use the two different approaches and what the pros/cons of both are. – Richard Dec 3 '08 at 11:42
Thanks for the examples, that really helped. – Richard Dec 3 '08 at 12:01
1  
SEXY explanation. – cLFlaVA Dec 18 '08 at 19:33
vote up 19 vote down

First I want to correct RoBorg: function abc(){} is scoped too — the name abc is defined in the scope where this definition is encountered. Example:

function xyz(){
  function abc(){};
  // abc is defined here...
}
// ...but not here

Secondly, it is possible to combine both styles:

var xyz = function abc(){};

xyz is going to be defined as usual, abc is undefined in all browsers but IE — do not rely on it being defined. If you want to alias functions on all browsers use this kind of declaration:

function abc(){};
var xyz = abc;

In this case both xyz and abc are aliases of the same object:

console.log(xyz === abc); // prints "true"

One compelling reason to use the combined style is the "name" attribute of function objects (not supported by IE). Basically when you define a function like this:

function abc(){};
console.log(abc.name); // prints "abc"

its name is automatically assigned. But when you define it like this:

var abc = function(){};
console.log(abc.name); // prints ""

its name is empty — we created an anonymous function and assigned it to some variable.

Deep down JavaScript treats both statements differently. This is the function declaration:

function abc(){}

abc here is defined everywhere in the current scope:

// we can call it here
abc(); // works
// yet it is defined down there
function abc(){}
// we can call it again
abc(); // works

This is the function expression:

var xyz = function(){};

xyz here is defined from the point of assignment:

// we can't call it here
xyz(); // UNDEFINED!!!
// now it is defined
xyz = function(){}
// we can call it here
xyz(); // works

Function declaration vs. function expression is the real reason why there is a difference demonstrated by RoBorg.

Fun fact:

var xyz = function abc(){};
console.log(xyz.name); // prints "abc"

Personally I prefer the "function expression" declaration because this way I can control the visibility. When I define the function like that:

var abc = function(){};

I know that I defined the function locally. When I define the function like that:

abc = function(){};

I know that I defined it globally providing that I didn't define abc anywhere in the chain of scopes. This style of definition is resilient even when used inside eval(). While this definition:

function abc(){};

depends on the context and may leave you guessing where it is actually defined, especially in the case of eval() — the answer is: it depends on browser.

link|flag
I refer to RoBorg but he is nowhere to be found. Simple: RoBorg === Greg. That's how history can be rewritten in the age of internet. ;-) – Eugene Lazutkin Jul 26 at 2:52
1  
var xyz = function abc(){}; console.log(xyz === abc); All browsers I've tested (Safari 4, Firefox 3.5.5, Opera 10.10) gives me "Undefined variable: abc". – NV Dec 3 at 17:43
1  
That what happens when relying on IE's JavaScript behavior. ;-) Thank you for thoroughness --- I'll update the answer. – Eugene Lazutkin Dec 3 at 19:30
vote up 0 vote down

In computer science terms, we are talking about anonymous functions and named functions. I think the most important difference is that an anonymous function is not bound to an name, hence the name anonymous function. In Javascript it is a first class object dynamically declared at runtime.

For more informationen on anonymous functions and lambda calculus, Wikipedia is a good start (http://en.wikipedia.org/wiki/Anonymous_function).

link|flag
vote up -1 vote down

One interesting thing to note is that only safari/webkit actually implements the differences that have been explained by other answers. Firefox treats both of these methods of function declaration both as the var foo = function() {} method is supposed to be. (actually, I forget what IE does)

link|flag
1  
No, it really doesn't. – Tim Down Dec 18 at 10:04
vote up 0 vote down
function name() {
  // …
}

is syntax sugar, as the JavaScript parser creates a property that attaches to the call object if the function is defined inside another function, and to the global object in the other cases; as it is the parser to do that, I think the term "syntax sugar" is correct.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.