+1 vote
in Angular by
Differentiate between one-way binding and two-way data binding.

1 Answer

0 votes
by

In One-Way data binding, the View or the UI part does not update automatically whenever the data model changes. You need to manually write custom code in order to update it every time the view changes.

1 way data binding - Angular Interview Questions - Edureka

Whereas, in Two-way data binding, the View or the UI part is updated implicitly as soon as the data model changes. It is a synchronization process, unlike One-way data binding.

2 way data binding - Angular Interview Questions - Edureka

Related questions

0 votes
asked Aug 11, 2023 in Angular by DavidAnderson
...