当前位置 : 主页 > 编程语言 > 其它开发 >

判断是否为数组的 JavaScript 方法总结

来源:互联网 收集:自由互联 发布时间:2021-08-24
前言 我们在日常开发中,常常有判断某值的需求,今天我们总结一下常见的几种用来判断是否为数组的 JavaScript 方法。 Array.isArray Array.isArray() 是ES5新增的方法,用于确定传递的值是否

前言

我们在日常开发中,常常有判断某值的需求,今天我们总结一下常见的几种用来判断是否为数组的 JavaScript 方法。

Array.isArray

Array.isArray() 是ES5新增的方法,用于确定传递的值是否是一个数组,如果是数组,则返回 true,否则返回 false。


  1. let arr = [];
  2. console.log(Array.isArray(arr)); // true

下面的函数调用都返回 true:


  1. Array.isArray([]);
  2. Array.isArray([1]);
  3. Array.isArray(new Array());
  4. Array.isArray(new Array("a", "b", "c", "d"));

需要注意的一点是:其实 Array.prototype 也是一个数组。


  1. Array.isArray(Array.prototype); // true

下面的函数调用都返回 false:


  1. Array.isArray();
  2. Array.isArray({});
  3. Array.isArray(null);
  4. Array.isArray(undefined);
  5. Array.isArray(17);
  6. Array.isArray('Array');
  7. Array.isArray(true);
  8. Array.isArray(false);
  9. Array.isArray(new Uint8Array(32))
  10. Array.isArray({ __proto__: Array.prototype });

兼容性如下图:

image-20210822221555090

可以看到,新版的主流浏览器都是支持该方法的,可以放心使用。

constructor

Object 的每个实例都有构造函数 constructor,用于保存着用于创建当前对象的函数


  1. let arr = [];
  2. console.log(arr.constructor === Array); // true

需要注意的是,constructor 有被修改的风险,判断结果不一定准确,比如:


  1. let arr = [1, 2, 3];
  2. arr.constructor = function () { }
  3. console.log(arr.constructor === Array); // false

一般不推荐使用 constructor 来判断是否为数组,我们只需要知道有这么一个方法就行。

instanceof

instanceof 运算符用于检测构造函数的 prototype 属性是否出现在某个实例对象的原型链上。举个例子:


  1. // 定义构造函数
  2. function C() {}
  3. function D() {}
  4.  
  5. var o = new C();
  6.  
  7. o instanceof C; // true,因为 Object.getPrototypeOf(o) === C.prototype
  8.  
  9. o instanceof D; // false,因为 D.prototype 不在 o 的原型链上
  10.  
  11. o instanceof Object; // true,因为 Object.prototype.isPrototypeOf(o) 返回 true
  12. C.prototype instanceof Object; // true,同上

用 instanceof 来判断是否为数组的用法如下:


  1. let arr = [];
  2. console.log(arr instanceof Array); // true

使用 instanceof 需要注意两点:

  • 构造函数的 prototype 和 实例的原型链都有可能会改变,所以判断出的结果不一定一成不变。
  • 在有 iframe 的页面脚本中使用 instanceof,可能会得到错误的结果,因为 iframe 拥有独立的全局环境,不同的全局环境拥有不同的全局对象,从而拥有不同的内置类型构造函数。

isPrototypeOf

isPrototypeOf() 可以用于测试一个对象是否存在于另一个对象的原型链上。用法如下:


  1. function Foo() {}
  2. function Bar() {}
  3. function Baz() {}
  4.  
  5. Bar.prototype = Object.create(Foo.prototype);
  6. Baz.prototype = Object.create(Bar.prototype);
  7.  
  8. var baz = new Baz();
  9.  
  10. console.log(Baz.prototype.isPrototypeOf(baz)); // true
  11. console.log(Bar.prototype.isPrototypeOf(baz)); // true
  12. console.log(Foo.prototype.isPrototypeOf(baz)); // true
  13. console.log(Object.prototype.isPrototypeOf(baz)); // true

如果要用 isPrototypeOf 来判断传入参数是否为数组,可以这样用:


  1. let arr = [];
  2. console.log(Array.prototype.isPrototypeOf(arr)); // true

Object.prototype.toString

每个对象都有一个 toString() 方法,当该对象被表示为一个文本值时,或者一个对象以预期的字符串方式引用时自动调用。

默认情况下,toString() 方法被每个 Object 对象继承。如果此方法在自定义对象中未被覆盖,toString() 返回 “[object type]“ 字符串,其中 type 是对象的类型。

可以通过 toString() 来获取每个对象的类型。为了每个对象都能通过 Object.prototype.toString() 来检测,需要以 Function.prototype.call() 或者 Function.prototype.apply() 的形式来调用,传递要检查的对象作为第一个参数,称为 thisArg。用法如下:


  1. var toString = Object.prototype.toString;
  2.  
  3. toString.call(new Date); // [object Date]
  4. toString.call(new String); // [object String]
  5. toString.call(Math); // [object Math]
  6.  
  7. //Since JavaScript 1.8.5
  8. toString.call(undefined); // [object Undefined]
  9. toString.call(null); // [object Null]

如果要用来判断一个对象是否为数组,可这样使用:


  1. let arr = [];
  2. console.log(Object.prototype.toString.call(arr) === "[object Array]"); // true

兼容性如下:

image-20210822225754452

typeof

说到判断类型,可能很多人都会想到 typeof 方法,我们这里来复习一下 typeof 相关内容。

typeof 操作符返回一个字符串,表示未经计算的操作数的类型。


  1. console.log(typeof 42); // "number"
  2. console.log(typeof 'blubber'); // "string"
  3. console.log(typeof true); // "boolean"
  4. console.log(typeof undeclaredVariable); // "undefined"

typeof 可能的返回值如下:

通过上图可以看到,数组对象属于“其他任何对象”,所以数组对象的 typeof 返回值是 “object”:


  1. let arr = [];
  2. console.log(typeof arr); // "object"

所以,我们要尽量避免使用 typeof。

总结

以上就是几种用来判断一个值是否为数组的几种方法,当然有好用的也有不好用的,但是不管怎样,我们知道有这么回事总归是好的。总结一下:

  • 最好用的方法是 Array.isArray,只是不支持 IE8 及以下。
  • 如果要考虑兼容性,则可以使用 Object.prototype.toString

 

网友评论