1
first();
function first(){
second();
third();
}
function second(){
var b='second';
}
function third(){
console.log(b);
}
收到錯誤試圖訪問變量b在第三位()之間的局部變量,可以請你幫忙 的console.log(B); ^節點JS:如何訪問方法
的ReferenceError:如果您要訪問b
比你必須把它定義爲B沒有定義
您可能需要閱讀[ Javascript中變量的範圍是什麼?](https://stackoverflow.com/questions/500431/what-is-the-scope-of-variables-in-javascript) – Paul