Number,String, Null, Undefined, Symbol, Boolean
用typeof可以检测出变量的基本数据类型,但是有个特例,就是null的typeof返回的是object,这个是javascript的历史Bug
ES6新增数据类型Symbol: 表示独一无二的值
typeof Symbol() // ‘symbol‘
typeof Number() // ‘number‘
typeof Sring() // ‘string‘
typeof Function() // ‘function‘
typeof Objecr() // ‘object‘
typeof Boolean() // ‘boolean‘
typeof null() // ‘object‘
typeof undefined() // ‘undefined‘