基础类型真假表
TRUE | FALSE | |
---|---|---|
boolean | true | false |
number | others | 0 NaN |
string | others | ‘’ “” |
undefined | undefined | |
null | null | |
object | others, includes {} | null |
以上是六大基本类型,值得注意的是,其中 null
类型,如果使用 typeof
,返回值是 "object"
几个默认的假值在判断的时候就可以简写,或者写成 !!varName
转。