Tue Feb 11
typescript
Author:Noritaka
let unionType: number | string = 10; let unionTypes: (number | string)[] = [21, 'hello']; unionType = 20; unionType = 'hello';