Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Difference between Javascript function declarations

What is the difference between the following two examples?

setInterval(myFunc, 100);

function myFunc() { alert('asdf'); } 

setInterval(myFunc, 100);

var myFunc = function myFunc() { alert('asdf'); }

Answer*

Draft saved
Draft discarded

Required fields are marked with *

Cancel
1
  • I just tested it (in firefox) and the second example is a function mechanism of declaring a function. It seems to be declaring the function myFunc and then assigning a reference to that to the variable myFunc. But this is executing in line, whereas the first example declares the function before linear code execution begins. Commented Jun 23, 2011 at 2:21

lang-js