数据类型

typeof操作符

  • typeof是一个操作符,不是函数
    1
    2
    3
    let message = "Hello World!";
    console.log(typeof message);//string
    console.log(typeof(message));//string
  • 调用typeof null 返回的是”object”
    • 特殊值 null 被认为是一个对空对象的引用

返回值

当我们在使用typeof操作符来检测变量时会得到下列字符串之一:

字符串 意义
underfined 未定义
boolean 布尔值
string 字符串
number 数值
object 对象或null
function 函数
symbol 符号