qrcode

关注全栈修仙之路,一起学习进阶!

typescript, typescript type narrowing

理解 TypeScript 类型收窄

一、类型收窄TypeScript 类型收窄就是从宽类型转换成窄类型的过程。类型收窄常用于处理联合类型变量的场景,一个常见的例子是非空检查: 123456789// Type is HTMLElement | nullconst el = document.getElementById("foo");if (el) { // Type is HTMLElement el.inne...