js中只有简单类型用typeof()函数可以判断出其数据类型
但是像Array、Object...等数据类型用typeof()函数返回值都为object,所以区分不了是否是数组类型。
判断数组类型的方法:
1。检测某个类的实例是不是Array类型
console.log(arr instanceof Array) ;//返回true则表示是数组类型,否则就不是。
2.看数组的__proto__属性和Array对象的prototype是不是相等
var arr=[1,2,3];
console.log(Array.prototype==arr.__proto__);//返回true则为数组,否则就不是数组;
3.看这个类型的构造函数是不是Array
var arr=[1,2,3];
console.log(arr.constructor===Array);//"true" 返回true就是
发表评论