2016-01-22 14:20:54 -05:00

9 lines
101 B
JavaScript

class Foo {
constructor(val){
this._val = val;
}
foo2(){
return foo2(this._val);
}
}