美文网首页JavaScript 使用记录
JavaScript typeof 操作符

JavaScript typeof 操作符

作者: 赵者也 | 来源:发表于2017-07-21 10:33 被阅读3次

对于一个值使用 typeof 操作符可能返回下列某个字符串:

  • "undefined" —— 值未定义
  • "boolean" —— 布尔值
  • "string" —— 字符串
  • "number" —— 数值
  • "object" —— 对象或 null
  • "function" —— 函数

typeof 操作符的例子:

var message = "some thing";
alert(typeof message);     // "string"
alert(typeof(message));   // "string"
alert(typeof 95);               // "number"
alert(typeof null);             // "object"

这几个例子说明,typeof 操作符的操作数可以是变量(message),也可以是数值字面量。注意 typeof 是一个操作符而不是函数,因此例子中的圆括号尽管可以使用,但不是必需的。

相关文章

网友评论

    本文标题:JavaScript typeof 操作符

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