2018-01-09 15:36:42 +01:00

9 lines
101 B
JavaScript

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