Intermediate TypeScript
Q51 / 100

What does "Record<K, V>" represent?

Correct! Well done.

Incorrect.

The correct answer is B) An object type whose keys are of type K and values are of type V

B

Correct Answer

An object type whose keys are of type K and values are of type V

Explanation

Record<K, V> constructs an object type with keys of type K and values of type V, e.g. Record<string, number>.

Progress
51/100