判断一个对象是不是数组类型,共有几种方式?(附赠type封装方法)

1. 判断一个对象是不是数组类型,一共有六种方法,分别是:
  • (1) Array.prototype.isPrototypeOf(arr) // 返回布尔值
  • 作用:检测括号中的值是否具有数组的原型 Array.prototype
  • (2) arr instanceof Array // 返回布尔值
  • 作用:前者arr是不是构造函数Array构造出来的
  • (3) Object.getPrototypeOf(arr) === Array.prototype // 返回布尔值
  • 作用: Object.getPrototypeOf()返回括号中arr的原型是不是 Array.prototype
  • (4) Object.prototype.toString.call(arr) === “[object Array]”
  • 作用:判断arr属于的内置类型是否是"[object Array]"
  • this指向问题:
  • ① 谁调用toString方法,this就指向谁
    
  • ② 用call改变this的指向,让this指向括号中的arr
    
  • (5) Array.isArray(arr) // 返回布尔值
  • 作用:用于确定括号中的arr是否是一个数组
  • (6) arr.constructor === Array // 返回布尔值
  • 作用: 判断arr的构造函数是否是Array

附赠

2. 编写type函数,扩展typeof操作符的不足,实现更精细的类型扩展
  //封装type方法,完全分辨传进去的东西,包括包装类,null

  function type(x) {
    //判断参数是原始值还是引用值
    if (typeof (x) == 'object') {
      if (x == null) {
          return null;
      } else if (Object.prototype.toString.call(x) == "[object Array]") {//区分数组和对象
          return 'array';
      } else if (Object.prototype.toString.call(x) == "[object Number]" && typeof (x) == 'object') {
          return "[object Number]";
      } else if (Object.prototype.toString.call(x) == "[object String]" && typeof (x) == 'object') {
          return "[object String]";
      } else if (Object.prototype.toString.call(x) == "[object Boolean]" && typeof (x) == 'object') {
          return "[object Boolean]";
      } else {
          return 'object';
      }
    } else {
      if (x + "" == 'NaN') {
          return NaN;
      } else {
          return typeof (x);
      }
    }
  }

2020—10—4 js基础知识 by code_he

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值