Angular
Fundamentals of Angular - Forms

Two-Way Binding

Outline

In this video...

You will learn about two way binding and how to use it in an Angular form.

Two way binding is accomplished through the syntax [(ngModel)]="model.property". This creates a two way binding between the model property specified and the value of the control. As the control is changed, the model is updated. If the model is updated programmatically, then the control is updated.

 

I finished! On to the next chapter