美文网首页Web前端之路
The differece between typeof and

The differece between typeof and

作者: 翻滚的前端程序员 | 来源:发表于2017-04-10 18:31 被阅读13次

    JavaScript 中 typeof 和 instanceof 常用来判断一个变量是否为空,或者是什么类型的。但它们之间还是有区别的
    typeof: 检测参数的类型,返回值为该参数的类型
    instance: 检测前者是否为后者的实例,返回值为true/false

    var a = [];
    typeof a;   //Object
    a instanceof Array;  //true
    a instanceof Object; // true
    
      
    var b = 'test';
    typeof b; //String
    b instanceof String;  //false

    相关文章

      网友评论

        本文标题:The differece between typeof and

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