var a = function b() {
console.log( typeof b === 'function' );
};
a(); // true
console.log( typeof b === 'function' ); // false
为什么第二个结果是假的?
var a = function b() {
console.log( typeof b === 'function' );
};
a(); // true
console.log( typeof b === 'function' ); // false
为什么第二个结果是假的?