Method used to combine strings
What is +?
Default color for outline.
What is black?
Syntax for AND operator.
What is && ?
Character used to assign value.
What is an equal sign? =
Khan Academy code that enables animation.
What is draw?
Programming name for text.
What is a string?
Default color of shapes.
What is white?
Strict inequality operator.
What is !== ?
Shortened code to assign a variable.
What is a shortcut?
Code grouped together to be used multiple times.
What is a function?
Term used to describe combining strings.
What is concatenating?
Function whose first two values specify the center of the shape (two possible choices).
What is an oval (or a circle)?
Expression type checked with the word "is"
What is a Boolean expression?
Variable declared inside a function.
What is a local variable?
Benefit of using functions.
What is multiple use or saves time?
Beginning position of text.
What is upper left?
Function whose first two values specify the upper left position of the shape.
What is a rectangle?
An expression that evaluates to either true or false.
What is a conditional expression/statement ?
Ex: if/else
Name two of the three character types allowed to begin a variable name.
What are letters, or the symbols $ or _?
Characters used to declare comments.
What are //
Command used to set color for lines.
What is fill or stroke?
Numbers given to a function.
What are parameters?
Name of syntax for OR operator.
What is two pipe symbols? ||
Convention for multiple-word variable names.
What is camel case?
Literal number that is not a variable or dependent on variables.
What is a hard-coded number?