Definition: Boolean variables can only have one of two values false or true. All conditions within if statements, for loops and while loops are evaluated as boolean results. False is a reserved word and cannot be used for anything other than to supply a boolean value of false.
Examples:
var x = false;

