美文网首页
js判断数组的方法

js判断数组的方法

作者: 不详7 | 来源:发表于2020-06-30 09:52 被阅读0次

    1.如何判断数组还是对象

    ①使用.length(局限性 确保对象中没有length属性 )

     对象的.length为undefined(确保对象中没有length属性)

      数组的.length为数字类型

    ②Array.isArray()  (推荐使用)

    ③Object.prototype.toString.call()  

            是否匹配"[object Array]"

    ④ 通过instanceof (局限性:多个全局时,iframe不可用)

            a instanceof Array

    ⑤通过constructor判断(局限性:多个全局时,iframe不可用)

        a.constructor === Array

    相关文章

      网友评论

          本文标题:js判断数组的方法

          本文链接:https://www.haomeiwen.com/subject/smytqktx.html