How to make something appear in the debug console.
What is console.log()?
The typical name for the first screen on an app.
How to display text on the screen.
What is a label?
The two types of variable values.
What are strings and numbers?
The markers that show that something is a string (not a number).
What are quotation marks?
The code to make a particular input begin an event.
What is onEvent()?
The most common element type for changing from one screen to the next.
What are buttons?
The three colors used to establish the color of any element.
What are red, blue, and green?
Line used to create a new variable.
What is var variable?
Used for monitoring a particular variable's value.
What are watchers?
How to change the text of a particular element.
How to make an element invisible to the user.
What is hideElement()?
The corner of the screen labelled position (0,0).
What is the top left?
How to stop all sounds that are playing.
What is stopSound()?
Character that marks the ending of a line of code.
What is semicolon(;)?
The code to change to another screen.
What is setScreen()?
How to change an element's location on the screen.
What is setPosition()?
The type of character that an element ID CANNOT start with.
What are numbers?
"dog" + "park" = ?
What is "dogpark"?
Error in the following code:
myVariable = 7
console.log(myVariable)
What is failure to establish a variable before referencing it?
How to find the string representing the text in a particular element.
What is getText()?
How to find an image.
What is using an icon from the Code.org library or entering the url of a particular image found online?
The most common case for naming elements.
What is camel case?
5 mod 2 = ?
What is 1?