Primitive Types
Information
Primitive types are objects that don't have a real class and don't inherit methods from Object.
All primitive types
'a' or '-'.
boolean
Boolean
Only true and false values. Can be checked in if function without comparing to true, as if (x) or if (!x) instead of if (x == true) or if (x == false).