- undefined 这个值未定义
- boolean 布尔值
- string 字符串
- number 数值
- object 对象或null
- function 函数
typeof 运算符总是会返回一个字符串:
typeof typeof 42; // "string"
typeof 42 首先返回字符串"number",然后typeof “number” 返回"string"
console.log(typeof undefined)
console.log(typeof Boolean)
console.log(typeof true)
console.log(typeof "wmdwmd")
console.log(typeof null)
console.log(typeof 12)
function test(){
}
console.log(typeof test)
undefined
function
boolean
string
object
number
function