console.log(typeof Function.prototype); //functionconsole.log(Function.prototype instanceof Function); //falseconsole.log(Function.prototype instanceof Object); //true根据后两句测试,Function.prototype应该是Object实例,而且所有的函数的prototype属性指向的默认原型不都是Object实例吗?这样才能实现继承啊,但是为什么第一句测试的结果是'function',难道函数的原型是个函数对象?实在想不通,求大神指点。。。
添加回答
举报
0/150
提交
取消