function typeOf(arg) { return arg; } var a; if (typeOf(a) == "undefined") { alert(1); } else { alert(2); }