TS 类型收窄
dingsheng 人气:0类型收窄之前只能使用公共方法
JS方法
typeof
缺点
- typeof null —→ object
- typeof 数组 —→ object
- typeof 日期 —→ object
a instanceof A : A 是否出现在a的原型链上
缺点
不支持string
、number
、boolean
等原始类型
不支持TS的 自定义类型,如下:
type Person { name: string }
- key in obj
- Array.isArray()
加载全部内容