document.writeln(typeof "abc"); //string document.writeln(typeof 123); //number document.writeln(typeof true); //boolean document.writeln(typeof eval); //function document.writeln(typeof []); //object document.writeln(typeof null); //object document.writeln(typeof {}); //object