0
Considering the example below: Is there a way for me to simplify?
It is possible to define _get and _set directly as a property without going through const [_get, _set] before?
const App = class {
constructor() {
const [_get, _set] = FnTal()
this._get = _get;
this._set = _set;
}
}