If Statement

This code currently works.  If the first line of this code were changed to 406 (as shown) what would happen?


Local Variable Scope

Notice where gooseHeight is declared in the code below.

Would the background(gooseHeight) function work or would it cause an error?


Scope - Global

In this example, is mooseHeight defined globally or locally?


Scope - Global Concept

In this example, would the background statement be able to use mooseHeight as the color (instead of 220)?


Variable Types

In JavaScript all variable are of the same type.