为了账号安全,请及时绑定邮箱和手机立即绑定

new 运算符

 function Foo() {}

       Foo.prototype.x = 1;

       var f = new Foo();

       console.log(f.x);

       console.log(f.hasOwnProperty('x')); //false

       console.log(f._proto_.hasOwnProperty('x')); // 老师,这个地方报错诶 Uncaught TypeError: Cannot read property 'hasOwnProperty' of undefined


正在回答

2 回答

 console.log(f.__proto__.hasOwnProperty('x'));

_proto_ -> __proto__

0 回复 有任何疑惑可以回复我~
#1

樱花飞落ll 提问者

非常感谢!
2015-05-11 回复 有任何疑惑可以回复我~

。。。。。。。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

new 运算符

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信