const assertions:
- 对象字面量:属性获得readonly属性
- 数字:变成 readonly tuples
对象:
| 对象 | 对象使用const断言 |
|---|---|
![]() |
![]() |
这个行为可以使我们不使用enum就可以从object创建可枚举对象。
数组:
| 数组 | 数组使用const断言 |
|---|---|
![]() |
![]() |
对象数组:
const allEvents = [{id: 'click',label: 'User clicks mouse',keyCode: 1,},{id: 'dbclick',label: 'User double-clicks mouse',keyCode: 2,},] as const;





