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
ESLint w/ Prettier & AirBnB styleguide - I prefer json config over js
Last updated