Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScriptkeyof and indexed accessSingle-choice MCQ

For an array type, what is `T[number]` and `keyof T` in this snippet?

type T = ["a", "b", "c"]; type Elem = T[number]; type Keys = keyof T;