js的数据类型和typeof数据类型

js的数据类型:number,string,null,undefined,Boolean,object

typeof数据类型:number,string,object,function,undefined,Boolean

typeof是唯一一个使用没有定义变量不报错的方法;

用法:typeof(变量)或者  typeof    变量

原文地址:https://www.cnblogs.com/tangdiying/p/10098705.html