为什么在代码块中声明函数是错误的,即if..else语句

时间:2017-10-08 00:16:03

标签: javascript

取自YDKJS。

foo(); // "b"

var a = true;

if (a) {
    function foo() { console.log( "a" ); }
} else {
    function foo() { console.log( "b" ); }
}

0 个答案:

没有答案