先执行变量提升,后执行函数提升

function a(){}
var a
console.log(typeof a)//function

  

05-28 18:06