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. True is a reserved word and cannot be used for anything other than to supply a boolean value of true.
Examples:
var x = true;

