JS isArraytypeofinstanceof

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS isArraytypeofinstanceof相关的知识,希望对你有一定的参考价值。

Array.isArray()

用来检验是不是数组

        var a = [1,2,3]
        console.log(typeof a);   // object
        console.log(Array.isArray(a));   // true

可以看出 typeof 并不能检验数组,虽然 Array.isArray() 可以检验数组,但是 IE8 都不兼容

        var a = [1,2,3]
        alert(Object.prototype.toString.call(a))  //  [object Array]

这个方法可以兼容IE8 以及以下的浏览器

 

typeof

        function foo(){}
        console.log(typeof foo);  // function
        console.log(typeof null); // object
        console.log(typeof undefined);  // undefined
        console.log(typeof \'a\');    //  string
        console.log(typeof 1);    // number

这里 null 是基本类型,不是一个对象,这个是 JS 的一个 bug。还有一个值得注意的地方:

console.log(undefined == null);  // true

因为在 JS 中 undefined 是派生自 null 的

 

instanceof

        function foo(){}
        var a = new foo()
        console.log(a instanceof foo);   // true

instanceof 是根绝原型链来查找的,如果函数 foo 的显示原型对象在 a 对象的隐式原型链上,则返回 true,否则返回 false

 

 

 

 

绿色的就是对象 a 的原型链

以上是关于JS isArraytypeofinstanceof的主要内容,如果未能解决你的问题,请参考以下文章

如何在一个js中调用另一个js,以及载入多个有依赖关系的js

js文件如何引用外部js

在js中获取作成者

怎么调用外部js文件?

web--JS 基础实例汇总

怎么合并js