发布于2018年11月22日 由qliutypeof 用typeof可以检测出变量的基本数据类型[Number、String、Null、Undefined、Symbol、Boolean],但是null的typeof返回是object
typeof undefined 返回 undefined
typeof null 返回 object
其他返回 function
typeof typeof 基本数据类型 返回 string