Scalar Types
Type | Description |
---|---|
Boolean | |
Integer | |
Float | |
String |
Integer
Number Format | Description | Example |
---|---|---|
Decimal | Normal decimal numbers | 86 |
Binary | Binary numbers start with 0b or 0B (Zero then capital or small “B”) | 0b1010110 |
Octal | Octal numbers start with 0(Zero) | 0126 |
Hexadecimal | Hex numbers start with 0x or 0X (Zero and then capital or small “X”) | 0x56 |
Composite Types
Type | Description |
---|---|
Array | |
Object |