目录: 内容: 类型函数: 1.typeof 只能判断基本数据类型,对于引用数据类型,只能判断它为object var s=8; console.log(typeof(s)); var s2=new String('hello2'); console.log(typeof(s2)); //没法判断它的具体类型 2.instanceof var s3= new String('hello') console.log(s3 instanceof(String));//判断s3是否为String实例化