Primitive Types
TypeScript has several primitive types that correspond to JavaScript primitives.
string
Text values of any length:
number
All numeric values (integers, floats, hex, etc.):
boolean
True or false values:
null and undefined
any and unknown
void and never
bigint
For very large integers:
symbol
Unique identifiers:
Exercise: Declare Variables
Declare variables with the correct primitive types:

