Angular Data Binding

Last Updated on May 18, 2022
Angular Data Binding

Angular Data Binding

As far as we have learned about Angular components. Here, we will learn about another technique for data binding. Data binding is the technique to help to build dynamic applications.

We could basically translate data binding with communication between model and view or the typescript code where we define all the business logic, and the view means the user interface, which is the output in the browser so, the user can see.

There are different types of data binding in Angular.

  • One-way data binding
    • Output data from component to view
      • String interpolation
      • Property binding
    • From view to a component by reacting to the user events
      • Event binding
  • Two-way data binding (combination of both)