js中使用typeof能得到那些类型

来源:互联网 发布:微信 for mac 2.0 编辑:程序博客网 时间:2024/06/07 06:43

typeof     undefined    // undefined 

typeof   "abc"   //string

typeof   123  // number

typeof   true  //boolen

值类型

typeof   {}  //  object

typeof  []   //   object

typeof  null    //object

typeof   console.log  //function

引用类型:

对象

数组
函数