I\'m new to angular2. I want to store user input from a text area in a variable in my component so I can apply some logic to this input. I tried ngModel but it
Just in case, instead of [(ngModel)] you can use (input) (is fired when a user writes something in the input ) or (blur) (is fired when a user leaves the input ) event,