class { onCreate() { this.name = 'INITIAL'; this.onInputCalls = []; } onInput(newInput) { this.onInputCalls.push({ name: this.name }) this.name = newInput.name; } }
Hello ${input.name}!