Appearance
数据类型
原始值类型(基本数据类型)
string
number
boolean
null
undefined
symbol ES6
bigint ES11
对象类型(引用数据类型)
标准普通对象
- Object
标准特殊对象
Array
RegExp
Math
Date
Error
...
非标准特殊对象
- String | Number | Boolean | Symbol | BigInt,通过 new 对应的构造器 或 new Object 或 Object 创建的引用数据类型。
可调用/执行对象
- function,实现了 call 方法。