charleyup

为自己吹过的🐮🍺奋斗终生.

typeof解析

2015/11/21

typeof操作符返回一个字符串,表示未经计算的操作数的类型.

语法

typeof operand
typeof(operand)

示例

typeof 1 // 'number'
typeof '1' // 'string'
typeof undefined // 'undefined'
typeof true // 'boolean'
typeof Symbol() // 'symbol'
typeof null // 'object'
typeof [] // 'object'
typeof {} // 'object'
typeof console // 'object'
typeof console.log // 'function'

小结

  • typeof只能判断number、string、boolean、undefined等几个基本数据类型,无法用于判断object、array、null等.
  • 引用数据类型中,typeof只能识别出function,其余的无法识别,均返回object.
  • 借助typeof判断变量存在并且保证不报错
      if (typeof a !== 'undefined') {}
  • 使用new操作符,除Function外的所有构造函数的类型都是object
      var str = new String('String');
      var num = new Number(100);
      typeof str; // 返回 'object'
      typeof num; // 返回 'object'
      var func = new Function();
      typeof func; // 返回 'function'
  • 综上,typeof无法直接用于判断精确的数据类型