Module:
Where we write the pieces of our Angular App. These make the code more maintainable, readable, and testable. It's where we define our dependencies.
Directive:
A marker on an html tag that tells it to run or reference some javascript.
Controller:
Where we define our Apps behavior by defining functions and values.
Data Binding:
Data-binding in AngularJS apps is the automatic synchronization of data between the model and view.
Angular Expression
Expression allow us to insert dynamic values into HTML.
View Model:
where angular decides which view to show on the page
Module: Where we write the pieces of our Angular App. These make the code more maintainable, readable, and testable. It's where we define our dependencies.
Directive: A marker on an html tag that tells it to run or reference some javascript.
Controller: Where we define our Apps behavior by defining functions and values.
Data Binding: Data-binding in AngularJS apps is the automatic synchronization of data between the model and view.
Angular Expression Expression allow us to insert dynamic values into HTML.
View Model: where angular decides which view to show on the page