Completion requirements
View
3. Data Types
3.5. null
null is a value where nothing is represented
null is the deliberate non-appearance of any value. It is that which does not exist and it’s not any of the other data types.
var empty = null;
Distinction is very subtle between null and undefined; but the most distinct distinction is that
a deliberately empty value is null.