9 lines
101 B
JavaScript
9 lines
101 B
JavaScript
class Foo {
|
|
constructor(val){
|
|
this._val = val;
|
|
}
|
|
foo2(){
|
|
return foo2(this._val);
|
|
}
|
|
}
|