原始类型有哪几种?null 是对象嘛?原始类型有6种
string
number
boolean
null
undefined
symbol
原始类型存储的都是值,没有函数调用
比如undefined.toString();会报错
‘1’
2020-05-11