Angular

  • Change property value dynamically with every keypress. backspace counts too

<input type="text" [ngModel]="property" (ngModelChange)="onValueChange($event)" />
{{property}}


onValueChange(newValue) {
  property = newValue;
  console.log(newValue)
}

Resources

Styles

Last updated