Benjamin Hall
Results
1
issues of
Benjamin Hall
I have a class like this: ```` javascript export default class MyClass { constructor(options) { this.prop = null; if(options) { this.prop = options.prop || this.prop; } } } ```` Then...