联合类型是一种表示值的类型,该值可以是多种类型之一。联合类型使用 | 表示 每种可能类型之间的符号。
|
let x: string | number;x = 'hello'; // 有效x = 123; // 有效