← Code LabTypeScript0/50 solved · 0%
Foundations · easy

8. Type Aliases

Custom names for types.

Create a type alias `ID` that can be either a `string` or a `number`.
Required in your answer: type ID =string | number