如何判断一个变量是不是数组?


  • array.isArray判断,返回true,说明是数组
  • instanceof  Array判断,返回true。说明是数组
  • 使用Object.prototype.toString.call判断,如果值是[object Array],说明是数组
  • 通过constructor来判断,如果是数组,那么arr.constructor === Array(不准确,因为我们可以指定obj.constructor = Array)
  • function fn() {
        console.log(Array.isArray(arguments));   //false; 因为arguments是类数组,但不是数组
        console.log(Array.isArray([1,2,3,4]));   //true
        console.log(arguments instanceof Array); //fasle
        console.log([1,2,3,4] instanceof Array); //true
        console.log(Object.prototype.toString.call(arguments)); //[object Arguments]
        console.log(Object.prototype.toString.call([1,2,3,4])); //[object Array]
        console.log(arguments.constructor === Array); //false
        arguments.constructor = Array;
        console.log(arguments.constructor === Array); //true
        console.log(Array.isArray(arguments));        //false
    }
    fn(1,2,3,4);

     


注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
粤ICP备14056181号  © 2014-2019 ITdaan.com

赞助商广告