显示
禁止额外的非空断言。
TypeScript 中的非空断言运算符 ! 用于断言值类型不包括 null 或 undefined。对单个值使用该运算符的次数大于一次没有任何作用。
!
const foo: { bar: number } | null = null; const bar = foo!!!.bar;