Beginner TypeScript
Q8 / 100

What keyword is used to define a custom type alias?

Correct! Well done.

Incorrect.

The correct answer is C) type

C

Correct Answer

type

Explanation

The "type" keyword creates a type alias, e.g. "type ID = number | string;".

Progress
8/100