QuizAdvanced

Distributive Conditional Types

How conditional types distribute over union type members.

With `type ToArr<T> = T extends any ? T[] : never`, what is `ToArr<string | number>`?