• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back

Directives

...


Modules

-Where we write pieces of our Angular code. Keeps it encapsalated




-Makes our code more maintainable, testable, and readable




-Where we define dependencies for our app.

Expressions

Allows you to insert dynamic values into HTML




I am {{4 + 6}}


Directive: ng-show / ng-hide

Display a section based on an expression

Directive: ng-repeat

Repeat a section for each item in an array


Controllers

Where we add application behavior

Formatting with Filters Recipe

{{ data* | filter:options* }}



{{'octagon gem' | uppercase }} / OCTAGON GEM




{{'My Description' | limitTo: 8}} / My Descr


Directive: ng-app

Attach the Application Module to the page.

Directive: ng-controller

Attach a Controller function to the page

ng-click

When ng-click changes the value of tab...

...the {{ tab }} expression automatically gets updated.