function p(){
var a=2
this.run=function(){console.log(a)}
};
var b=new p()
b.run()
b.run()能正常输出a是2。可是a不是只属于p的一个变量吗,为何能访问到?
qq_冲哥_0
相关分类