Edit in JSFiddle

var car; 
typeof car; // undefined
typeof true; // boolean
typeof '문자열'; // string
typeof 10; // number
typeof null; // object
typeof {name:'John', age:34}; // object
typeof [1,2,3,4]; // object
typeof function myFunc(){}; // function