Basic - Union
둘 이상의 유형을 허락하는 유형을 유니온 유형이라고 한다.
let course: string | number = 'Hi there'
course = 1234
let username: string | string[];
둘 이상의 유형을 허락하는 유형을 유니온 유형이라고 한다.
let course: string | number = 'Hi there'
course = 1234
let username: string | string[];