掌握:使用类型别名语法给类型取别字
示例代码:
// let arr: ( number | string )[] = [ 1, 'a', 4]
// 类型别名: type 类型别名 = 具体类型
type CustomArr = (number | string)[];
let arr: CustomArr = [1, 'a', 4];
类型别名:
-
type 类型别名 = 具体类型
基本语法 -
定义类型别名,遵循大驼峰命名规范,类似于变量
-
使用类型别名,与类型注解的写法一样即可
使用场景:
-
当同一类型(复杂)被多次使用时,可以通过类型别名,
简化
该类型的使用
type CustomArr = (number | string)[];
let arr: CustomArr = [1, 'a', 4];
let arr2: CustomArr = [2, 'b', 8];