美文网首页
2、typeof 运算符

2、typeof 运算符

作者: 咖啡加糖a | 来源:发表于2017-07-20 11:19 被阅读0次

    1、typeof   undefined      //  undefined

    2、typeof   'abx'    //  string

    3、typeof   123   //   number

    4、typeof    true   //    boolean

    5、typeof    {}    //   object

    6、typeof  [ ]    //  object

    7、typeof  null   //  object

    8、typeof    console.log    //   function

    typeof    只能区分值类型,引用类型中只能区分函数

    相关文章

      网友评论

          本文标题:2、typeof 运算符

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