typeof 연산자
typeof null // Object
typeof [] // Object
typeof {} // Object
typeof new Data() // Object
typeof function // function
typeof '' // string
typeof 1 // numnber
typeof NaN // numnber
typeof true // boolean
typeof undefined // undefined
typeof Symbol() // symbol