Intermediate TypeScript
Q45 / 100

What does the utility type "Pick<T, K>" do?

Correct! Well done.

Incorrect.

The correct answer is B) Constructs a type by picking the set of properties K from T

B

Correct Answer

Constructs a type by picking the set of properties K from T

Explanation

Pick<T, K> selects a subset of properties K from type T to form a new type.

Progress
45/100