wangdoc / typescript-tutorial

TypeScript 教程
https://wangdoc.com/typescript
2.5k stars 269 forks source link

fix: 修复常量被赋值为 null 或 undefined 之后推断类型有误的问题 #16

Closed leejunhui closed 1 year ago

leejunhui commented 1 year ago

阮老师,这个地方经过实际测试,如果给常量赋值为 undefinednull 之后,ts 编译器推断出来的类型并不是 any,而分别是 undefinednull

leejunhui commented 1 year ago

是我马虎了,这里如果没有开启 tsconfig 中的 strictNullChecks 的话,应该就是都会被推断为 any 类型 😂