如果功能表述涉及储存地的变数中的功能价值,或者实际上只是功能价值? 那么,总是会看到“功能表述”一词指整个功能。
const funcExp = function(){console.log("Hello World!")};
但我想到的是:
function(){console.log("Hello World!")}
如果你问我,我会说,功能表达只是功能价值本身,而这种作用基本上是一种单纯的匿名功能,那么就没有了。 i 可能是错误的。 您是否真的认为,将这一匿名职能称为不知会吗?
const funcExp = function(){console.log("Hello World!")};
i mean in some way already has a name, not directly as part of the function value, but as part of the variable in where its stored, so i don t know i just want to know what really is a function expression, the whole variable creation initialized with a function value or only that function value, if the first turns to be true then how do we call this type of function values function(){console.log("Hello World!")}
? function expression also?; thanks.