ga-wdi-exercises / shaping-up-with-angular

0 stars 20 forks source link

Caroline Chen shaping-up-with-angular HW #65

Closed twelve13 closed 7 years ago

twelve13 commented 7 years ago

Module: where we define the app's dependencies and organize code so that the code is maintainable, readable, and testable.

Controller: where we define functions and values for the app's behavior. Helps us get data on to the page.

Directive: a marker on an HTML tag that makes Angular trigger some Javascript code. It binds behavior to an HTML element.

Angular Expression: how we insert dynamic Javascript values into the HTML. Kind of like squid tags for Rails.

Will finish the rest tomorrow...

twelve13 commented 7 years ago

Databinding: synchronization of data between the model and the view. the view is attached to the ViewModel

ViewModel: something that sits between the View and the Model?