我是靠谱客的博主 傻傻钢笔,最近开发中收集的这篇文章主要介绍简单介绍三个判断数组的方法的区别和优劣,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这三个方法如下:

Object.prototype.toString.call() 、 instanceof 以及 Array.isArray()

解析:

1. Object.prototype.toString.call()

每一个继承 Object 的对象都有 toString方法,如果 toString方法没有重写的话,会返回 [Object type],其中 type 为对象的类型。但当除了 Object 类型的对象外,其他类型直接使用 toString方法时,会直接返回都是内容的字符串,所以我们需要使用call或者apply方法来改变toString方法的执行上下文。

const an = ['Hello','An'];
an.toString(); // "Hello,An"
Object.prototype.toString.call(an); // "[object Array]"

这种方法对于所有基本的数据类型都能进行判断,即使是 null 和 undefined 。

Object.prototype.toString.call('An') // "[object String]"
Object.prototype.toString.call(1) // "[object Number]"
Object.prototype.toString.call(Symbol(1)) // "[object Symbol]"
Object.prototype.toString.call(null) // "[object Null]"
Object.prototype.toString.call(undefined) // "[object Undefined]"
Object.prototype.toString.call(function(){}) // "[object Function]"
Object.prototype.toString.call({name: 'An'}) // "[object Object]"

Object.prototype.toString.call()常用于判断浏览器内置对象。

2. instanceof

instanceof的内部机制是通过判断对象的原型链中是不是能找到类型的 prototype
使用 instanceof判断一个对象是否为数组, instanceof会判断这个对象的原型链上是否会找到对应的 Array的原型,找到返回 true,否则返回 false

[]  instanceof Array; // true

instanceof只能用来判断对象类型,原始类型不可以。并且所有对象类型 instanceof Object 都是 true。

[]  instanceof Object; // true

3. Array.isArray()

  • 功能:用来判断对象是否为数组

  • instanceof 与 isArray
    当检测Array实例时, Array.isArray优于 instanceof,因为 Array.isArray可以检测出 iframes

    var iframe = document.createElement('iframe');
    document.body.appendChild(iframe);
    xArray = window.frames[window.frames.length-1].Array;
    var arr = new xArray(1,2,3); // [1,2,3]
    
    // Correctly checking for Array
    Array.isArray(arr);  // true
    Object.prototype.toString.call(arr); // true
    // Considered harmful, because doesn't work though iframes
    arr instanceof Array; // false
    
  • Array.isArray()Object.prototype.toString.call()
    Array.isArray()是ES5新增的方法,当不存在 Array.isArray(),可以用 Object.prototype.toString.call()实现。

    if (!Array.isArray) {
      Array.isArray = function(arg) {
        return Object.prototype.toString.call(arg) === '[object Array]';
      };
    }
    

写的很好,对于我这样的前端小白来说很有意义,基础牢了,房子才能盖得更高。

出处:https://juejin.im/post/5c7bd72ef265da2de80f7f17 第21题

最后

以上就是傻傻钢笔为你收集整理的简单介绍三个判断数组的方法的区别和优劣的全部内容,希望文章能够帮你解决简单介绍三个判断数组的方法的区别和优劣所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部