问答详情
源自:-

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


提问者:樱花飞落ll 2015-05-09 10:43

个回答

  • Rex1215
    2015-05-11 10:04:16
    已采纳

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

    _proto_ -> __proto__

  • Bosn
    2015-06-05 10:55:20

    。。。。。。。