第一次直接运行
function test() { console.log("1"); }
控制台输出undefined
第二次调用test()
输出1和undefined
为什么会输出undefined?
完整代码发来看看