Completion requirements
View
3. Data Types
3.4. Undefined
There’s no value to an undefined variable.
We are declaring a variable, by using the var keyword, but it is undefined before a value is assigned to it.
var OneThing; // results undefined
It is still undefined if you do not declare the variable with var.
typeof anotherThing; // results undefined