TypeScript, as a superset of JavaScript, enhances the language by adding static types. These types can be divided into two main categories: primitive (or built-in) types and user-defined types. Here's a comprehensive list of the built-in types in TypeScript:
Primitive Types
- boolean: Represents true/false values.
- number: Used for both whole numbers and floating-point values.
- string: Represents textual data.
- bigint: Can represent whole numbers larger than those that the
number
type can represent.
- symbol: Used to create unique identifiers.
- null: Represents the absence of any object value.
- undefined: Indicates uninitialized variables or properties.
- any: A type that can represent any JavaScript value. It is used to opt-in and opt-out of type-checking during compilation.
- void: Used for functions that do not return a value.
- unknown: Represents any value but requires the developer to perform type-checking before performing operations on values of this type.
- never: Represents types of values that never occur, such as the return type of a function that always throws an error.
Utility Types
TypeScript also includes a variety of utility types that allow for more complex type transformations and operations. Some of the key utility types include:
- Partial: Creates a type with all properties of
T
set to optional.
- Required: Makes all properties of
T
required.
- Readonly: Makes all properties of
T
read-only.
- **Record<K...