• 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/7

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;

7 Cards in this Set

  • Front
  • Back
private variables
Are declared with the 'var' keyword inside the object, and can only be accessed by private functions and privileged methods.
private functions
Are declared inline inside the object's constructor (or alternatively may be defined via var functionName=function(){...}) and may only be called by privileged methods (including the object's constructor).
privileged methods
Are declared with

this.methodName=function(){...}

and may invoked by code external to the object.
public properties
Are declared with

this.variableName

and may be read/written from outside the object.
public methods
Are defined by

Classname.prototype.methodName = function(){...}

and may be called from outside the object.
prototype properties
are defined by

Classname.prototype.propertyName = someValue
static properties
Are defined by

Classname.propertyName = someValue