typeof 的使用

typeof 的使用

  • 作用
  • 使用

作用
typeof 操作符来检测变量的数据类型。

使用

typeof "John"                // 返回 string
typeof 3.14                  // 返回 number
typeof false                 // 返回 boolean
typeof [1,2,3,4]             // 返回 object
typeof {name:'John', age:34} // 返回 object

用 typeof 检测 null 返回是object。
typeof 的使用

typeof undefined    // 返回 undefined

typeof 一个没有值的变量会返回 undefined。

var person;
typeof person;  //返回 undefined

undefined 和 null 的区别

null 和 undefined 的值相等,但类型不等:

typeof undefined             // undefined
typeof null                  // object
null === undefined           // false
null == undefined            // true
上一篇:C++ 模板类 undefined reference to.... 的一种可能


下一篇:问题解决:protobuf出现undefined reference