computed_property() {
this.variable = new Date(this.currentUtc)
return this.variable
}
const variable2 = this.computed_property()
OR more simply
computed_property() {
return new Date(this.currentUtc)
}
const variable2 = this.computed_property()