(1)基本/值类型
方式 | 类型 | 描述 |
---|---|---|
typeof | Number | 任意数值 |
typeof | String | 任意字符串 |
typeof | Boolean | true/false |
typeof/=== | undefined | undefined |
=== | null | null |
(2)对象/引用类型
方式 | 类型 | 描述 |
---|---|---|
typeof/instanceof | Object | Object |
instanceof | Array | 数组 |
typeof | Function | 函数 |
原文:https://www.cnblogs.com/zhihaospace/p/11992568.html