Open-FE
Results
2
comments of
Open-FE
```js function Person (name) { this.name = name } Person.prototype = { setAge(age) { this.age = age return this }, setPosition(pos) { this.position = pos return this }, sayHi() {...