In Angular, we use data binding to move data back and forth between the component class and the html view. There are three types of binding…
- Interpolation – one way binding from class to template
- Property – html event passed from template to class
- Event – html property setting from class to html template
In future posts, we will explore each of these. Suffice it to say, we can maintain separation of concerns and still have the ability to affect the view in the manner we wish.
Happy Coding!
Clay Hess