InterviewSolution
Saved Bookmarks
| 1. |
Explain the concept of Data Binding. |
|
Answer» Data Binding can be best described as a technique that is used to link the application’s data to the view layer. It makes COMMUNICATION between the DOM (Document Object Model) and the TypeScript code of our component. In other words, data binding is a communication between the typescript code of our component and our template, which is visible to the user. Data Binding allows us to define interactive APPLICATIONS easily and efficiently without worrying about pushing and PULLING data. There are two types of data binding -
|
|