var a = function b() {
console.log( typeof b === 'function' );
};
a(); // true
console.log( typeof b === 'function' ); // false
2 番目の結果が偽である理由
var a = function b() {
console.log( typeof b === 'function' );
};
a(); // true
console.log( typeof b === 'function' ); // false
2 番目の結果が偽である理由