Closed leejunhui closed 1 year ago
阮老师,这个地方经过实际测试,如果给常量赋值为 undefined 或 null 之后,ts 编译器推断出来的类型并不是 any,而分别是 undefined 和 null。
undefined
null
any
是我马虎了,这里如果没有开启 tsconfig 中的 strictNullChecks 的话,应该就是都会被推断为 any 类型 😂
strictNullChecks
阮老师,这个地方经过实际测试,如果给常量赋值为
undefined
或null
之后,ts 编译器推断出来的类型并不是any
,而分别是undefined
和null
。