下面这个函数return
的第二行的作用不是检测属性是否为对象吗?typeof
一个函数不是会返回'function'
吗?
那return
的第二行的作用究竟是什么呢?
求解答?
function isHostMethod(object, property) {
var t = typeof object[property];
return t === 'function' ||
(!!(t === 'object' && object[property])) ||
t === 'unknow';
}
Smart猫小萌
相关分类