(change) vs (ngModelChange) in angular

(change) event bound to classical input change event. You can use (change) event even if you don’t have a model at your input as (ngModelChange) is the @Output of ngModel directive. It fires when the model changes. You cannot use this event without ngModel directive. As you discover more in the source code, (ngModelChange) emits the new value. So it means … Read more