Union-Type

Union Type

Source

A type which is formed by two or more types.

Example

type jim: string | number;

So the above will allow us to make a variable with the type jim which is either a number or a number.

#JavaScript
#TypeScript