Union Types
Union types allow a value to be one of several types.
Basic Unions
Union in Function Parameters
Type Narrowing
Union with null/undefined
Array of Union Types
Union with Objects
Common Union Patterns
Exercise: Handle Union Type
Create a function that handles both string and number:

