请说出以下Javascript的运行结果. var test = 1; var demo = (function(a){ var test = 2; test++; return a++; })(test); alert(test); alert(demo);