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

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;

6 Cards in this Set

  • Front
  • Back
What is the javascript command for sending a trace message to Firebug?
window.console.debug('message');
Whats the difference between console.log and console.debug?
console.debug will also include a hyperlink to the line where it was called.
How do you use the for loop to iterate through the objects in a array?
for(key in arr)
{
console.log(arr[key]);
}
What is JSON?
Is a highly portable data exchange format.
What sign does the id selector start with?
#
What character does the class selector start with?
.