原型内部数组如何在原型中获取变量

时间:2016-12-05 11:26:56

标签: javascript arrays constructor

就像下面显示的示例一样,如何将this.a的值传递给b数组?

function Foo(){

};
Foo.prototype={
  bar:function(){
    this.a=1;
  },
  b:[this.a]
}

0 个答案:

没有答案