0 votes
in Angular by
What is Data Binding? How many ways it can be done?

1 Answer

0 votes
by
In order to connect application data with the DOM (Data Object Model), data binding is used. It happens between the template (HTML) and component (TypeScript). There are 3 ways to achieve data binding:

Event Binding – Enables the application to respond to user input in the target environment

Property Binding – Enables interpolation of values computed from application data into the HTML

Two-way Binding – Changes made in the application state gets automatically reflected in the view and vice-versa. The ngModel directive is used for achieving this type of data binding.

Related questions

0 votes
asked Dec 29, 2023 in Angular by DavidAnderson
0 votes
asked Oct 11, 2021 in Python by rajeshsharma
...