Module - collection of directives, services, filters that allow angular to run.
Controller - "ng" - declared on HTML and links to a textdoc that controls the actions. Can have various controllers 'controlling' different aspects.
Data Binding - Expressions are reevaluated when a value changes.
Directive - HTML attributes that extend to angular to specify an action
Angular Expression (i.e., {{ }}) - "Interpolates" the value from app.js onto index.html.
View Model - Where angular is being viewed AKA the HTML document.
Module - collection of directives, services, filters that allow angular to run. Controller - "ng" - declared on HTML and links to a textdoc that controls the actions. Can have various controllers 'controlling' different aspects. Data Binding - Expressions are reevaluated when a value changes. Directive - HTML attributes that extend to angular to specify an action Angular Expression (i.e., {{ }}) - "Interpolates" the value from app.js onto index.html. View Model - Where angular is being viewed AKA the HTML document.