Javascript에서 Data Type은 크게 6가지가 있습니다.
1. Number
2. String
3. Boolean
4. Object
5. Undefined
6. Function
typeof
가 있습니다.typeof 1; // "number"
typeof 'a'; // "string"
typeof true; // "boolean"
typeof [1, 2]; // "object"
typeof {a:1, b:2}; // "object"
typeof a; // "undefined"
typeof alert; // "function"