What determines if a JavaScript function is a named anonymous function versus a, um, regular function?

霸气de小男生 提交于 2020-01-14 13:25:28

问题


Reading "A re-introduction to JavaScript" I noticed something interesting about functions:

The name provided to an anonymous function as above is(or at least should be) only available to the function's own scope.

Entering some things based on the code in the tutorial at the nodejs prompt I was able to verify that node agrees with the author:

function add(foo, bar) {
  return foo + bar;
}

add(1, 2);

gets me 3, and:

var five = (function plus(foo, bar) {
             return foo + bar;
           })(2, 3);
plus(2, 3);

gets me a syntax error about plus not being defined.

I'm a little confused because the code I used to define both functions was identical (except for the name). How does JavaScript know the first one is a regular function and the second one is a named anonymous function?


回答1:


The first is a normal function declaration. The declared name is introduced into the current scope, and implicitly refers to the function body. In this form, function is a statement, and as such returns no value.

The second is a function expression, and the interpreter knows that because it's part of the right hand side of an assignment, and because of the braces around it. Any time the word function appears where some other "value" (or "expression") could have been supplied then what you have is a function expression. The result of that expression is a reference to the function body.

The name of a function expression (if it were given one) is only available within the function, as described in your link.

IMHO the nomenclature in that link is incorrect. What they call a "named anonymous functions" should in my view just be called a "named function expression". This apparent error may stem from the fact that all anonymous functions are actually function expressions, but not all function expressions are anonymous.

Note that if you use this style:

var foo = function bar() {
    ...
}

then as described above bar is a function expression, whose result is then assigned to the variable foo. The name bar is not put into the current scope, but is available within the function itself.

The declaration of the variable foo will be hoisted to the top of the scope, but will not be assigned its value (i.e. the reference to the function expression) until the line above is actually executed.

Another interesting demonstration of the difference is this (from the Chrome console):

> function() { }
SyntaxError: Unexpected token (
> a = function() { }
function () { }

Note that the only difference is that in the latter there is an assignment to a. The attempt to declare an anonymous function using a statement is illegal, because the language grammar requires that the function statement include a label for the function. However the latter is implicitly a function expression, which is allowed to be anonymous.



来源:https://stackoverflow.com/questions/12081088/what-determines-if-a-javascript-function-is-a-named-anonymous-function-versus-a

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!