JS高级_变量提升和函数提升

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

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

  

原文地址:https://www.cnblogs.com/nailc/p/9771668.html