Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
JavaScript: var functionName = function() {} vs function functionName() {}

In JavaScript, I can define a function and assign it to a variable:

var myVar = function myFunc(){};

or define the function standalone:

function myFunc(){};

What are the use cases for the first approach?

share|improve this question

marked as duplicate by VisioN, Pointy, Matchu, Makoto, Thor Jan 20 at 21:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted

functions declared to variables are not hoisted to the top of the scope

function run() {

   fn1(); // logs "hi"
   fn2(); // error

   function fn1 () { console.log("hi"); }
   var fn2 = function () { console.log("hi again"); };    

}

See this previous related answer. Are named functions or anonymous functions preferred in JavaScript?

This will end up looking similar to this after the parse runs through it

function run() {

       function fn1 () { console.log("hi"); }
       var fn2;

       fn1(); // logs "hi"
       fn2(); // error


       fn2 = function () { console.log("hi again"); };    

    }
share|improve this answer
Thanks a bunch, Trevor. Is there a reason/logic behind this difference? – AdamNYC Jan 20 at 18:17
It's just how the JS parser was written. Perhaps this article will be of assistance. net.tutsplus.com/tutorials/javascript-ajax/…. I used to have this great article on how it actually stored the vars, but I am unable to find it. :( – Trevor Jan 22 at 16:20

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