Last active
August 29, 2015 14:08
-
-
Save sunny-mittal/2a0d0b464df36f46cd18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Angular Vocabulary | |
### Scope | |
The execution context for expressions | |
### Controller | |
A JavaScript constructor function used to modify $scope. | |
### Data Binding | |
A two-way relationship between model and view that are automatically synchronized. | |
### Dependency Injection | |
Deals with how components get hold of their dependencies. | |
### Directive | |
Markers on DOM elements that direct Angular to attach specified behavior. | |
### Module | |
A container for part of an Angular application. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment