Beginner TypeScript
Q17 / 100

What does the "never" type represent?

Correct! Well done.

Incorrect.

The correct answer is B) A value that never occurs, such as a function that always throws

B

Correct Answer

A value that never occurs, such as a function that always throws

Explanation

never represents values that never occur, commonly used as the return type of functions that always throw or never finish.

Progress
17/100