Primitive Data Types
The primitive data types fall into three categories :
- Integer Types
- Floating Point Types
- Truthy/Falsy (Boolean Type)
Floating Point Types
The floating-point types store numbers with decimal places as well as integer types. They are two types :
float
double
Character Type
The character type stores a single Unicode character.
char
Boolean Type
The boolean type stores a value that can be either true or false.
boolean