js新手在判断变量是否是undefined时,很自然的写出了下面的代码:

if(a == "undefined")

结果无法正常判断,上网查询了一下,正确做法是使用typeof函数:

if(typeof(a)=="undefined")