JavaScript typeof操作符确认数据类型

  1. 返回 number
    typeof 1
    typeof new Date().getTime()

  2. 返回 undefiend
    typeof undefined
    typeof console.log(1); 先打印1,再打印 undefined

  3. 返回 string
    typeof ' '
    typeof '1'
    typeof typeof null

  4. 返回 boolean
    typeof false
    typeof true
    typeof ( 1 == 1 )

  5. 返回 function
    typeof function() {}
    typeof Object
    typerof Number
    typeof Array
    typeof String

  6. 返回Object
    typeof null
    typeof {}
    typeof []
    typeof new Array()
    typeof new Object()
    typeof new Number()
    class A{} typeof new A()

  7. 返回 symbol
    typeof Symbol('name')

你可能感兴趣的:(js,javascript,前端)