Type alias Primitive

Primitive: string | boolean | symbol | Nullable | Numeric

Represents all the primitive types in JavaScript.

  • Nullable: A value that can be either null or undefined.
  • Numeric: A value that can be either a number or a bigint.
  • string: Represents textual data.
  • boolean: Represents a logical value (true or false).
  • symbol: Represents a unique and immutable value.