new 运算符

来源:-

樱花飞落ll

2015-05-09 10:43

 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回答

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

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

    _proto_ -> __proto__

    樱花飞落ll

    非常感谢!

    2015-05-11 20:38:00

    共 1 条回复 >

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

    。。。。。。。

JavaScript深入浅出

由浅入深学习JS语言特性,且解析JS常见误区,从入门到掌握

281111 学习 · 1020 问题

查看课程

相似问题