typeof 연산자에 대해 말하기 전에, 먼저 데이터 타입에 대해서 살펴보자.
e.g.
console.log(typeof 1) // number console.log(typeof '1') // string console.log(typeof (1<2)) //boolean