使用方法

Array.isArray是用来判断一个值是否是数组的方法。

  1. Array.isArray([1, 2]) // true
  2. Array.isArray(1) // false

模拟实现

使用Object.prototype.toString判断类型,返回true or false

  1. /**
  2. * 工具方法
  3. */
  4. const getType = value => {
  5. const objectType = Object.prototype.toString.call(value);
  6. const type = objectType.match(/^\[object (.*)\]$/)[1];
  7. return type.toLowerCase()
  8. }
  9. // isMyArray
  10. Array.isMyArray = function(value) {
  11. return getType(value) === 'array';
  12. }

扩展

可根据Object.prototype.toString实现一个获取数据类型的方法

  1. const getType = value => {
  2. const objectType = Object.prototype.toString.call(value);
  3. const type = objectType.match(/^\[object (.*)\]$/)[1];
  4. return type.toLowerCase()
  5. }