(This question is not specific to Vue, but it is in a Vue project, that is why the strange use of the this
in front of the functions and variables.)
I h
You can spell out the destructuring targets, instead of implicitly creating const
variables:
({
primaryNumber: this.primaryNumber,
typeOfExpression: this.typeOfExpression
} = this.findPrimaryAndType(
this.naturalExpressionYearOfBirth,
this.gender,
));
Of course that's not very helpful in terms of conciseness. If those two properties are the only ones on the result object, you can however use Object.assign
:
Object.assign(this, this.findPrimaryAndType(
this.naturalExpressionYearOfBirth,
this.gender,
));