为什么原型构造函数中的变量作为属性访问时未定义?
为什么 myPerson.age
未定义?
function Person() {
var age = 28;
}
var myPerson = new Person();
console.log(myPerson.age);
我已经清楚地设置了 Person
函数构造函数中的变量是什么,该变量应该由 myPerson
的 .prototype
指向,不是吗?
Why is myPerson.age
undefined?
function Person() {
var age = 28;
}
var myPerson = new Person();
console.log(myPerson.age);
I have clearly set what the varaible is in the Person
function construtor which should be pointed to by the .prototype
of myPerson
, no?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: