alert(typeof ((function () { alert("hellow") }))())
函数分为有返回值和无返回值的函数,个人理解无返回值的函数可以说是返回的undefined。所以第一次打印“hellow”,第二次打印的是undefined。