我定义了自己的“Age”类型,作为“Person”类型的一部分,如下所示:
var Age=function(){
year='1930',
month='Jan'
}
var Person=function(){
name='abc',
age=new Age()
}
var o1=new Person()
console.log(o1.propertyIsEnumerable('age'))
我的期望是,只要o1的年龄属性是从“年龄”创建的,而其“年/月”都可以使用字符串作为索引来访问,那么o1是可枚举类型。 但事实是,它打印出“假”。
为什么这样,我的理解不正确?
答案 0 :(得分:1)
您正在定义全局变量而不是属性
var Age=function(){
year='1930',
month='Jan'
}
var Person=function(){
name='abc',
age=new Age()
}
应该是
var Age=function(){
this.year='1930';
this.month='Jan';
}
var Person=function(){
this.name='abc';
this.age=new Age();
}