声明式函数是整体提升
fn(); function fn(){ console.log("hello"); }; fn();
执行过程如下:
function fn(){ console.log("hello"); }; fn(); fn();