function obj ( name,age){
this.name = name,
this.age = age
}
这里的this是什么意思?
上面的函数obj有属性吗?
var nobj = new obj('a',10);
console.log( Object.keys(nobj) ) //name , age 为什么nobj有2个属性?
console.log( Object.keys(obj) ) // [] 而obj却是空的?
qq_昼绽_0
狼顾之相1995
相关分类