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

  1. typeof operand
  2. typeof (operand)
类型 结果
undefined “undefined”
null “object”
Boolean “boolean”
Number “number”
String “string”
Symbol “symbol”
宿主对象(Js环境提供) Implementation-dependent
函数对象 “function”
其他对象 “object”
  1. // Numbers
  2. typeof 37 === 'number';
  3. typeof 3.14 === 'number';
  4. typeof Math.LN2 === 'number';
  5. typeof Infinity === 'number';
  6. typeof NaN === 'number'; // 尽管NaN是"Not-A-Number"的缩写
  7. typeof Number(1) === 'number'; // 但不要使用这种形式!
  8. // Strings
  9. typeof "" === 'string';
  10. typeof "bla" === 'string';
  11. typeof (typeof 1) === 'string'; // typeof总是返回一个字符串
  12. typeof String("abc") === 'string'; // 但不要使用这种形式!
  13. // Booleans
  14. typeof true === 'boolean';
  15. typeof false === 'boolean';
  16. typeof Boolean(true) === 'boolean'; // 但不要使用这种形式!
  17. // Symbols
  18. typeof Symbol() === 'symbol';
  19. typeof Symbol('foo') === 'symbol';
  20. typeof Symbol.iterator === 'symbol';
  21. // Undefined
  22. typeof undefined === 'undefined';
  23. typeof declaredButUndefinedVariable === 'undefined';
  24. typeof undeclaredVariable === 'undefined';
  25. // Objects
  26. typeof {a:1} === 'object';
  27. // 使用Array.isArray 或者 Object.prototype.toString.call
  28. // 区分数组,普通对象
  29. typeof [1, 2, 4] === 'object';
  30. typeof new Date() === 'object';
  31. // 下面的容易令人迷惑,不要使用!
  32. typeof new Boolean(true) === 'object';
  33. typeof new Number(1) === 'object';
  34. typeof new String("abc") === 'object';
  35. // 函数
  36. typeof function(){} === 'function';
  37. typeof class C{} === 'function'
  38. typeof Math.sin === 'function';
  39. typeof new Function() === 'function';

null

在 JavaScript 最初的实现中,JavaScript 中的值是由一个表示类型的标签和实际数据值表示的。对象的类型标签是 0。由于 null 代表的是空指针(大多数平台下值为 0x00),因此,null的类型标签也成为了 0,typeof null就错误的返回了”object”。(reference)

使用new操作符

  1. // All constructor functions while instantiated with 'new' keyword will always be typeof 'object'
  2. var str = new String('String');
  3. var num = new Number(100);
  4. typeof str; // It will return 'object'
  5. typeof num; // It will return 'object'
  6. // But there is a exception in case of Function constructor of Javascript
  7. var func = new Function();
  8. typeof func; // It will return 'function'

语法中的括号

  1. // Parentheses will be very much useful to determine the data type for expressions.
  2. var iData = 99;
  3. typeof iData + ' Wisen'; // It will return 'number Wisen'
  4. typeof (iData + ' Wisen'); // It will return 'string'

正则表达式

对正则表达式字面量的类型判断在某些浏览器中不符合标准:

  1. typeof /s/ === 'function'; // Chrome 1-12 , 不符合 ECMAScript 5.1
  2. typeof /s/ === 'object'; // Firefox 5+ , 符合 ECMAScript 5.1

暂存死区

块级作用域 let const,在声明之前进行typeof操作会抛出一个ReferenceError。块级作用域在块的头部处于”暂时性死区“,知道被初始化,在这期间访问变量会引发错误。

例外

  1. typeof document.all === 'undefined'

IE

在IE 6,7和8上,很多宿主对象是对象而不是函数。例如:

  1. typeof alert === 'object'

常见问题

1. typeof 的返回值总共有多少个?

答:”number”,”string”,”boolean”,”undefined”,”object”,”function”,”symbol”这7个返回值

2. typeof 为什么要区分object和function?

答:函数在ECMAScript中是对象,不是一种数据类型,函数还包含一些特殊属性,因此有必要使用typeof来区分。实际使用过程中有这个需求。

3.typeof的不足之处有哪些

答:typeof操作符不能准确的区分对象,数组,正则。返回值为”object”。部分早期浏览器版本对正则对象返回”function”。IE67中typeof alert //object,其他浏览器type alert //function

4.判断下列表达式的值

  1. typeof 1/0 //NaN
  2. typeof (1/0) //number
  3. typeof typeof 1/0 // NaN
  4. typeof typeof (1/0) // string
  5. typeof (typeof 1/0) // number

5.用typeof来判断对象的潜在陷阱是什么

答:JavaScript对于typeof []==='object',typeof null === 'object',typeof function(){}==='function',所以在使用typeof来做判断时需要考虑这些情况。当然也可以选择替代方法,Object.prototype.toString.call([])来进行判断,返回值类似于[object Array],可以加上正则处理为 Object.prototype.toString.call([]]).replace(/\[object\s|\]/g,'')

参考资料:

https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/typeof