typeof的返回值
typeof undefined //undefined
typeof 'abc' // string
typeof 123 // number
typeof true // boolean
typeof {} // object
typeof [] // object
typeof null // object
typeof console.log //function
typeof Symbol(); // symbol
typeof new RegExp(); //object