InterviewSolution
Saved Bookmarks
| 1. |
What is the scope? |
|
Answer» In Angular, a scope is an object that refers to the application model. It is a context in which expressions can be executed. These scopes are grouped hierarchically, comparable to the DOM structure of the application. A scope aids in the propagation of various events and the monitoring of expressions. |
|