InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by data binding? |
|
Answer» Data binding is automatic SYNCHRONIZATION of the data between the VIEW and model components. Data binding lets you treat the model components as a single source of truth in your applications. The view component is a projection of the model. When the model changes, the view will reflect the change, and vice versa. NOTE: This information is LIKELY to be ASKED in angularjs interview questions. |
|