console.log(undefined);//undefined
var str="abcdefg";
console.log(typeof (str));//string
console.log(typeof "abcdefg");//string
var num1=1111;
console.log(typeof num1); //number
var str1=num1+'a';
console.log(typeof str1);//string
var str2=new String();
console.log(typeof str2);//object
var arr=[1,2];
console.log(typeof arr);//object
var obj=new Object();
console.log(typeof obj);//object
function fun1(){};
console.log(typeof fun1);//function
var fun2=function (){};
console.log(typeof fun2);//function