來源:https://developer.mozilla.org/el/docs/Web/JavaScript/Reference/Operators/function
「與函數聲明不同,JavaScript中的函數表達式不會被提升,在聲明它們之前,不能使用函數表達式。
函數表達式提升?
例子:
var hey = function(){
console.log("hi");
}
Chrome的控制檯:window.hey返回
function(){
console.log("hi");
}
這裏有問題嗎? – RobG
我在這裏沒有看到任何問題,請說清楚你想知道什麼。 – cyrix
什麼問題?你在**聲明函數後使用'window.hey' **,所以你引用的文檔不適用。 – Barmar